0👍
router should be set up like this
export default new Router({
mode: 'hash',
routes: [{
path: '/',
component: Home
},
{
path: '/login',
component: Login
}
]})
- [Vuejs]-How to capture selectionStart and selectionEnd in Safari for ios?
- [Vuejs]-How to properly use dinamic id name in vue v-for?
Source:stackexchange.com