第一种
methods:{
back(){
this.$router.go(-1);//返回上一层
},
},
第二种
@click="$router.back(-1)"
...
yekong
3年前 (2021-11-27)
喜欢
<div class="profiledetail scroll">
<el-backtop target='.profiledetail'></el-backtop>
<headtop...
yekong
3年前 (2021-11-27)
喜欢
在路由文件中增加
router.afterEach(() => {
document.body.scrollTop = 0
document.documentElement.scrollTop = 0
})
...
yekong
3年前 (2021-11-23)
喜欢
<template>
<div class="slide">
<a-carousel autoplay arrows dots-class="slick-dots slick-thumb">...
yekong
3年前 (2021-11-23)
喜欢
vue
<el-input
v-model="scope.row.discount"
type="number"
@inpu...
yekong
3年前 (2021-11-20)
喜欢
依赖文件
function get_object_first_attribute(data) {
for (var key in data)
return data[key];
}
function myCache(key, value, seconds...
yekong
3年前 (2021-11-20)
喜欢
import { Message } from 'element-ui'
const router = new Router({
base: '/',
routes: [
{
path: '/',
...
yekong
3年前 (2021-11-19)
喜欢
<li v-for="(item,index) in listTemp" :key="index">
<div v-for="(cell,i) in item" :key="i&q...
yekong
3年前 (2021-11-18)
喜欢
<template>
<div class="jiudianlist">
<div class="jiudianlisthead">
<div class="it...
yekong
3年前 (2021-11-18)
喜欢
let router_path = this.$route.path
console.log(router_path)
...
yekong
3年前 (2021-11-17)
喜欢