vueMain.js 394 B

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