create-platon-plugin 0.2.4

A quick way to scaffold a new Platon Plugin
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
export default [
  {
    path: '/',
    name: 'Home',
    component: () => import('../views/HomeView.vue')
  },
  {
    path: '/about',
    name: 'About',
    component:() => import('../views/AboutView.vue')
  }
]