Answer the question
In order to leave comments, you need to log in
VueJS Single Page Application Routing?
Gives an error message.
What is the reason?
app.js
let Vue = require('vue');
import VueRouter from 'vue-router'
Vue.use(VueRouter);
import Index from './pages/Index.vue';
const routes = [
{ path: '/', component: Index }
];
const router = new VueRouter({routes});
const app = new Vue({
router
}).$mount('#app-content');
<template>
<cards></cards>
</template>
<script>
import Cards from '../components/Cards.vue';
export default {
name: "index",
components: Cards
}
</script>
Answer the question
In order to leave comments, you need to log in
<template>
<cards></cards>
</template>
<script>
import Cards from '../components/Cards.vue';
export default {
name: "index",
components: {
Cards
}
}
</script>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question