Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Commit

Permalink
🔧 #10 カラーピッカーページ作成
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoruni committed Feb 14, 2020
1 parent 5417807 commit 934db69
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
6 changes: 6 additions & 0 deletions JavaScript/Vue/sandbox/src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ const routes = [
path: '/lifecycle',
name: 'Lifecycle',
component: () => import(/* webpackChunkName: "lifecycle" */ '../views/Lifecycle.vue')
},
{
// #10 カラーピッカーを試す
path: '/vue-color',
name: 'VueColor',
component: () => import(/* webpackChunkName: "VueColor" */ '../views/Vuecolor.vue')
}
]

Expand Down
5 changes: 5 additions & 0 deletions JavaScript/Vue/sandbox/src/views/Vuecolor.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<template>
<div class="vue-color">
vue color
</div>
</template>

0 comments on commit 934db69

Please sign in to comment.