register the BaseButton

This commit is contained in:
Andreas Zweili 2021-06-28 17:58:20 +02:00
parent 943a718399
commit edd1099b00
1 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@ import { createApp } from 'vue';
import router from './router';
import store from './store';
import App from './App';
import BaseButton from './components/ui/BaseButton';
import BaseCard from './components/ui/BaseCard';
const app = createApp(App);
@ -10,6 +11,7 @@ const app = createApp(App);
app.use(router);
app.use(store);
app.component('base-button', BaseButton);
app.component('base-card', BaseCard);
app.mount('#app');