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