Commit d08d12a7 authored by 何怡红's avatar 何怡红

注释vscode

parent 65a47a77
import { createSSRApp } from 'vue'; import { createSSRApp } from 'vue';
import App from './App.vue'; import App from './App.vue';
import store from './store'; import store from './store';
import Vconsole from 'vconsole'; // import Vconsole from 'vconsole';
export function createApp() { export function createApp() {
const app = createSSRApp(App); const app = createSSRApp(App);
app.use(store); app.use(store);
const vConsole = new Vconsole(); // const vConsole = new Vconsole();
app.use(vConsole); // app.use(vConsole);
return { return {
app, app,
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment