UNPKG

mixone

Version:

MixOne is a Node scaffolding tool implemented based on Vite, used for compiling HTML5, JavasCript, Vue, React and other codes. It supports packaging Web applications with multiple HTML entry points (BS architecture) and desktop installation packages (CS a

12 lines 275 B
// @ts-nocheck import Vue from 'vue'; import App from './App.vue'; import router from './router'; import store from '@/store/index'; import './browser-adap'; // Vue 2.7 的应用初始化方式 new Vue({ router, store, render: h => h(App) }).$mount('#app');