UNPKG

mili

Version:
21 lines (15 loc) 359 B
import 'normalize.css' import Vue from 'vue' import App from './app' import createRouter from './createRouter' import createStore from './createStore' export default function () { const router = createRouter() const store = createStore() const app = new Vue({ router, store, render: (h) =>h(App), }) return { app, store, router } }