12345678910111213141516 |
- import Vue from 'vue';
- import App from './App.vue';
- import MyButton from './components/MyButton.vue';
- import MyContainer from './components/MyContainer.vue';
- import CurrentUser from './components/CurrentUser.vue';
- Vue.component('MyButton', MyButton);
- Vue.component('MyContainer', MyContainer);
- Vue.component('CurrentUser', CurrentUser);
- Vue.config.productionTip = false;
- new Vue({
- render: (h) => h(App),
- }).$mount('#app');
|