在新页面打开:
lookOver: function (id) {
const {href} = this.$router.resolve({
path: `/page/desktopmanagement/maindesktop/index/seedesktop/${id}`
})
window.open(href, '_blank')
}
在当前页面打开:
lookOver: function (id) {
this.$router.push({
path: `/page/desktopmanagement/maindesktop/index/seedesktop/${id}`
})
}