mirror of
https://github.com/misitebao/wails-template-vue
synced 2025-05-11 09:38:01 +08:00
10 lines
219 B
JavaScript
10 lines
219 B
JavaScript
|
import OpenLink from '@/components/public/OpenLink.vue'
|
||
|
|
||
|
// Encapsulate global components as plug-ins
|
||
|
// 将全局组件封装为插件
|
||
|
|
||
|
export default {
|
||
|
install(app) {
|
||
|
app.component(OpenLink.name, OpenLink)
|
||
|
}
|
||
|
}
|