1. 程式人生 > 其它 >vue 註冊全域性元件

vue 註冊全域性元件

技術標籤:Vue起步學習vue.js

在main.js裡面使用Vue.component()

import tuiIcon from "@/components/thorui/tui-icon/tui-icon";

Vue.component('tuiIcon', tuiIcon)

關於Vue.use()和Vue.component()的用法區別,可以參考下面這篇文章:

https://www.cnblogs.com/yesyes/p/6658611.html

index.js裡面把元件封裝成外掛,就可以使用Vue.use()使用自己的自定義外掛了。