cc-ui-vue3
Version:
This template should help get you started developing with Vue 3 in Vite.
19 lines (14 loc) • 408 B
text/typescript
import 'virtual:uno.css'
import "../icon/iconfont.css";
import CcSystemSwitch from "./CcSystemSwitch/index"; //全局系统切换组件
import CcText from "./CcText/index"; //全局文字组件
// 全局安装
const install = (app: any) => {
app.use(CcSystemSwitch);
app.use(CcText);
};
const AllSignin = {
install,
};
export { CcSystemSwitch, CcText };
export default AllSignin;