Restructure project folders and remove obsolete files
All checks were successful
Deploy Spot / deploy (push) Successful in 34s
All checks were successful
Deploy Spot / deploy (push) Successful in 34s
This commit is contained in:
16
src/app.js
16
src/app.js
@@ -6,7 +6,7 @@ import User from '@scripts/user';
|
||||
import { createApp, reactive } from 'vue';
|
||||
|
||||
//Main template
|
||||
import Spot from './Spot';
|
||||
import App from './App';
|
||||
|
||||
//Style
|
||||
import Css from '@styles/spot';
|
||||
@@ -28,10 +28,10 @@ const oApi = new Api({
|
||||
});
|
||||
|
||||
//Mount app
|
||||
const oSpot = createApp(Spot);
|
||||
oSpot.provide('appConfig', appConfig);
|
||||
oSpot.provide('api', oApi);
|
||||
oSpot.provide('lang', oLang);
|
||||
oSpot.provide('projects', oProjects);
|
||||
oSpot.provide('user', oUser);
|
||||
oSpot.mount('#container');
|
||||
const oApp = createApp(App);
|
||||
oApp.provide('appConfig', appConfig);
|
||||
oApp.provide('api', oApi);
|
||||
oApp.provide('lang', oLang);
|
||||
oApp.provide('projects', oProjects);
|
||||
oApp.provide('user', oUser);
|
||||
oApp.mount('#container');
|
||||
|
||||
Reference in New Issue
Block a user