UNPKG

@yanhe-su/cli

Version:

CLI tool for DAO Style projects - providing project scaffolding, template generation and dependency management

10 lines (9 loc) 247 B
import { createApp } from 'vue'; import { createPinia } from 'pinia'; import App from './App.vue'; import router from './router'; import './styles/index.css'; const app = createApp(App); app.use(createPinia()); app.use(router); app.mount('#app');