mirror of
https://github.com/hi2shark/nazhua.git
synced 2026-01-13 15:50:43 +08:00
16 lines
354 B
JavaScript
16 lines
354 B
JavaScript
import './load';
|
|
import './assets/scss/base.scss';
|
|
import router from './router';
|
|
import store from './store';
|
|
import config from './config';
|
|
|
|
import DotDotBox from './components/dot-dot-box.vue';
|
|
|
|
export default (app) => {
|
|
app.use(router);
|
|
app.use(store);
|
|
app.component('DotDotBox', DotDotBox);
|
|
|
|
app.config.globalProperties.$config = config;
|
|
};
|