feat: DateConverter

Signed-off-by: CorentinTh <corentin.thomasset74@gmail.com>
This commit is contained in:
CorentinTh 2020-04-25 21:05:40 +02:00 committed by Corentin THOMASSET
parent d1db2c8601
commit 5a06d89bcc
7 changed files with 132 additions and 53 deletions

View file

@ -3,6 +3,7 @@ import VueRouter from 'vue-router'
import Home from './routes/Home.vue'
import TokenGenerator from "./components/TokenGenerator";
import Hash from "./components/Hash";
import DateConverter from "./components/DateConverter";
Vue.use(VueRouter)
@ -19,6 +20,10 @@ const routes = [
path: '/hash',
component: Hash
},
{
path: '/date-converter',
component: DateConverter
},
{
path: '/about',
name: 'About',