Vue3全局组件

Vue3全局组件,第1张

在src的目录下的components中新建 组件名.vue

如:GlobalComponent.vue

在main.js中引入并注册全局组件

import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'


const app = createApp(App)

// 引入全局组件
import GlobalComponent from "./components/GlobalComponent"
// 注册全局组件
app.component("GlobalComponent",GlobalComponent);


app.use(store).use(router).mount('#app')

在需要的位置可直接使用全局组件 


 

 style标签中加入scoped属性样式只在本组件中起作用

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1322942.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-12
下一篇 2022-06-12

发表评论

登录后才能评论

评论列表(0条)

保存