我有下面的代码。
main.js
new Vue({
el: '#app',
template: '<App/>',
components: { App }
})
App.vue
<template>
<div id="app">
// this does not pass the data to the component
<basics :resume="resume"></basics>
<education :resu
我正在尝试使用Vue路由器(例如代码)从一个URL重定向到另一个URL
{
path: '/verifyemail/:id/:token',
//can i somelogic here when user entered
},
{
path: '/login',
component:login
},
我想要做什么?当用户注册自己时。当用户点击他的电子邮件中的验证按钮时,服务器将电子邮件验证链接发送到他的电子邮件,然后它应该首先调用verifyemail url。它有一个带参数的ajax调用,这个参数是我现在从ve