vue全局注册组件

vue全局注册组件

main.js页面

import myComponents from './components/myComponents.vue'  // 引入组件
Vue.component("my-components",myComponents); // 全局注册组件

在页面里使用

<my-components></my-components>

猜你喜欢

转载自blog.csdn.net/qq_37235823/article/details/86527596