mirror of
https://github.com/MrXujiang/h5-Dooring.git
synced 2026-01-09 21:48:11 +00:00
13 lines
385 B
TypeScript
13 lines
385 B
TypeScript
import ZhuanLan from './ZhuanLan/template';
|
|
import Tab from './Tab/template';
|
|
import List from './List/template';
|
|
import Coupons from './Coupons/template';
|
|
import CardLabel from './CardLabel/template';
|
|
|
|
const basicTemplate = [ZhuanLan, List, Tab, Coupons, CardLabel];
|
|
const ShopTemplate = basicTemplate.map(v => {
|
|
return { ...v, category: 'shop' };
|
|
});
|
|
|
|
export default ShopTemplate;
|