Files
crawler-plugin/frontend-vue/src/shop-match-main.ts
2026-04-11 00:57:34 +08:00

13 lines
423 B
TypeScript

import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import zhCn from 'element-plus/es/locale/lang/zh-cn'
import dayjs from 'dayjs'
import 'dayjs/locale/zh-cn'
import 'element-plus/dist/index.css'
import '@/styles/main.css'
import BrandShopMatchTab from '@/pages/brand/components/BrandShopMatchTab.vue'
dayjs.locale('zh-cn')
createApp(BrandShopMatchTab).use(ElementPlus, { locale: zhCn }).mount('#app')