Olá, na aula 04 Modificando o estado pede para criar a rota Projetos, mas ao abrir no navegador ela não redireciona corretamente.
src/routes/index.ts:
import { createRouter, createWebHashHistory, RouteRecordRaw } from "vue-router"
import Tasks from '../pages/Tasks.vue'
import Projetos from '../pages/Projetos.vue'
const routes: RouteRecordRaw[] = [
{
path: '/',
name: 'Tasks',
component: Tasks
},
{
path: '/projetos',
name: 'Projetos',
component: Projetos
},
]
const router = createRouter({
history: createWebHashHistory(),
routes: routes
})
export default router
src/pages/Projetos.vue:
<template>
<h1>
Projects
</h1>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
name: 'Projetos'
})
</script>
Podem me ajudar?