main.js 148 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import App from './App' import { createSSRApp } from 'vue' export function createApp() { const app = createSSRApp(App) return { app } }