| 12345678910 |
- import Print from 'vue-print-nb'
- import VDistpicker from 'v-distpicker'
- // 该函数是一个异步插件安装函数,用于在Vue应用中注册组件和插件
- export default async ({ app, router, store, Vue }) => {
- Vue.component('v-distpicker', VDistpicker) // 注册v-distpicker组件
- Vue.use(Print) // 注册Print插件
- console.log('Welcome To GreaterWMS') // 输出欢迎信息
- }
|