Vue项目总结(Antd Design of Vue)

Antd Design of Vue

https://www.antdv.com/docs/vue/introduce-cn/

一、给数组添加属性

this.$set(datalist[i], 'content', '')

二、点击编辑路由,直接获取数据

在接收方添加属性keepAlive

meta: { title: '主页', keepAlive: true }

三、避免每次点击路由都重新加载所有内容

App.vue

<keep-alive :include="cashViews">
  <router-view/>

cashViews中添加页面的name

data () {
  return {
    cashViews: ['']
  }
}

主页中有vue其他总结

匮乏即是富足,自律产生喜悦。

发布了39 篇原创文章 · 获赞 47 · 访问量 4885

猜你喜欢

转载自blog.csdn.net/qq_42520112/article/details/102879401