Skip to content

Commit

Permalink
style: 💄 update file name
Browse files Browse the repository at this point in the history
  • Loading branch information
isboyjc committed Dec 12, 2024
1 parent 4b9595a commit 5c36d17
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
9 changes: 7 additions & 2 deletions playground/src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@ const router = createRouter({
routes: [
{
path: '/',
name: 'home',
component: () => import('@/views/home-page/home-page.vue')
name: 'notion',
component: () => import('@/views/notion-page/notion-page.vue')
},
{
path: '/rich-text',
name: 'richText',
component: () => import('@/views/rich-text-page/rich-text-page.vue')
}
]
})
Expand Down
5 changes: 5 additions & 0 deletions playground/src/views/rich-text-page/rich-text-page.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<template>
<div>1</div>
</template>

<script setup></script>

0 comments on commit 5c36d17

Please sign in to comment.