@creatorsn/vfluent3 0.2.14 → 0.2.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -54,5 +54,11 @@ export * from "./verify-box";
54
54
  export * from "./web-window";
55
55
  import '@/styles/theme/index.scss';
56
56
  import type { Plugin } from 'vue';
57
+ declare const components: any[];
57
58
  export declare const FvComponentPlugins: Plugin;
59
+ declare module 'vue' {
60
+ interface GlobalComponents {
61
+ 'FvButton': typeof components[0];
62
+ }
63
+ }
58
64
  export default FvComponentPlugins;