I installed @ionic/vue @ionic/core and vue-router using npm and imported them in my main.js using
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import IonicVue from '@ionic/vue';
createApp(App).use(router).use(IonicVue).mount('#app');
The routing works and there are no errors. But when I use this tag in the About-View:
<ion-button>Button</ion-button>
it just displays the text “Button”
Any idea how to get it working?
1 post - 1 participant