Files
crawler-plugin/frontend-vue/src/withdraw-main.ts
T
2026-06-18 18:53:16 +08:00

15 lines
425 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 BrandWithdrawTab from '@/pages/brand/components/BrandWithdrawTab.vue'
dayjs.locale('zh-cn')
createApp(BrandWithdrawTab).use(ElementPlus, { locale: zhCn }).mount('#app')