@wdslib/web-design
Version:
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
28 lines (27 loc) • 696 B
TypeScript
declare const Loading: import('vue').VueElementConstructor<import('vue').ExtractPropTypes<{
projectName: {
type: StringConstructor;
default: string;
};
copyright: {
type: StringConstructor;
default: string;
};
status: {
type: StringConstructor;
};
loadingTips: {
type: StringConstructor;
};
loadingName: {
type: StringConstructor;
default: string;
};
lv: {
type: StringConstructor;
default: string;
};
}>>;
declare const registerComponent: (prefix?: string) => void;
export { Loading, registerComponent as registerLoadingComponent };
export default registerComponent;