setup vue router
import Vue from 'vue'
import VueRouter from 'vue-router'
Vue.use(VueRouter)
setup vue router
import Vue from 'vue'
import VueRouter from 'vue-router'
Vue.use(VueRouter)
vue router
//<router-link :to="..."> is the equivalent of calling "router.push(...)"
// literal string path
router.push('home')
// object
router.push({ path: 'home' })
// named route
router.push({ name: 'user', params: { userId: '123' } })
// with query, resulting in /register?plan=private
router.push({ path: 'register', query: { plan: 'private' } })
// go forward by 3 records
router.go(3)
// go back by 3 records
router.go(-3)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us