Skip to content

Commit

Permalink
Create a test vue file for LRD Bootcamp
Browse files Browse the repository at this point in the history
  • Loading branch information
honsaar committed Mar 19, 2024
1 parent b93f188 commit 0a4d1c9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ const routes = [
name: 'SMART Goals',
component: () => import('../views/SmartGoals.vue')
},
{
path: '/test',
name: 'test',
component: () => import('../views/test.vue')
},
]

const router = createRouter({
Expand Down
11 changes: 11 additions & 0 deletions src/views/test.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<template>
<p>Hello world</p>
</template>

<script setup>
</script>

<style scoped>
</style>

0 comments on commit 0a4d1c9

Please sign in to comment.