赞
踩
参考Volar文档 定义全局组件:使用GlobalComponents类型接口声明类型
- // components.d.ts
- import Button from './Button/index.vue';
- declare module '@vue/runtime-core' {
- export interface GlobalComponents {
- // 组件名: Button组件数据
- DemoButton: typeof Button;
- }
- }
- export {};
简评:Volar官方全局组件的推荐写法,基于Volar,必须安装该插件,GlobalComponents是Volar专门为了解决全局组件类型而新增的类型接口
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。