1.0.24 • Published 2 years ago

ilaw-test v1.0.24

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Vue 3 + TypeScript + Vite

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 to learn more.

Recommended IDE Setup

Type Support For .vue Imports in TS

Since TypeScript cannot handle type information for .vue imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates. However, if you wish to get actual prop types in .vue imports (for example to get props validation when using manual h(...) calls), you can enable Volar's Take Over mode by following these steps:

  1. Run Extensions: Show Built-in Extensions from VS Code's command palette, look for TypeScript and JavaScript Language Features, then right click and select Disable (Workspace). By default, Take Over mode will enable itself if the default TypeScript extension is disabled.
  2. Reload the VS Code window by running Developer: Reload Window from the command palette.

You can learn more about Take Over mode here.

乾坤 vite-plugin-qiankun

  1. Run `Extensions:子应用配置
  2. Run mian.ts import {renderWithQiankun, qiankunWindow,QiankunProps,} from "vite-plugin-qiankun/dist/helper"; import { MicroAppStateActions } from "qiankun"; ` const instance: any = null; type AppProps = Partial<MicroAppStateActions & QiankunProps>; function render(props: AppProps) { const { container } = props; if (container) { // 注册主,微应用全局通信 props.onGlobalStateChange((state, prevState) => { // useTheme().theme({ state, prevState, container }) }); }

    const instance = createApp(App); for (const key, component of Object.entries(ElementPlusIconsVue)) { instance.component(key, component); } instance.config.globalProperties.$axios = 123; instance.use(utils); instance.use(createPinia()); instance.use(router); instance.mount("#app"); if (qiankunWindow.POWERED_BY_QIANKUN) { // console.log('我正在作为子应用运行') } } // 子应用 生命狗子 renderWithQiankun({ /**

    • 应用每次进入都会调用 mount 方法,通常我们在这里触发应用的渲染方法
    • @param props */ mount(props: MicroAppStateActions & QiankunProps) { render(props); }, /**
    • bootstrap 只会在微应用初始化的时候调用一次,下次微应用重新进入时会直接调用 mount 钩子 */ bootstrap() { // 通常我们可以在这里做一些全局变量的初始化,比如不会在 unmount 阶段被销毁的应用级别的缓存等。 }, /**
    • 应用每次切出/卸载 会调用的方法,通常在这里我们会卸载微应用的应用实例 */ unmount() { instance.unmount(); instance._container.innerHTML = ""; instance = null; }, }); if (!qiankunWindow.POWERED_BY_QIANKUN) { render({}); } `
  3. run vite-config-ts import qiankun from "vite-plugin-qiankun" plugin:[ qiankun(privacyPolicy, { useDevMode }),]