请问如何优化该vue组件?


https://img3.mukewang.com/5c0f51ec00018f2904330402.jpg

因为v-if这些必须挂载到元素里,虽然这样能实现切换,但button归属元素觉得不规范.有什么改进方法没?


https://img1.mukewang.com/5c0f51fb0001f7e404600383.jpg

title 是页面标题,虽然这实现了默认加载标题和切换标题,但感觉代码冗余.有没有简便的办法?

当年话下
浏览 653回答 1
1回答

智慧大石

目前想到的一个  methods: {    change: function () {      this.title = this.title === '用户登录' ? '用户注册' : '用户登录'      this.$store.commit('setValue', {title: this.title})      return this.title    }  },  created: function () {    this.change()  }
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript