为了账号安全,请及时绑定邮箱和手机立即绑定

vue 基础问题

vue 基础问题

Qyouu 2018-09-04 17:19:27
const NotFound = { template: '<p>Page not found</p>' }const Home = { template: '<p>home page</p>' }const About = {      template: '<p>about page</p>' }const routes = {  '/': Home,  '/about': About     }new Vue({   el: '#app',   data: {     currentRoute: window.location.pathname   },   computed: {     ViewComponent () {      return routes[this.currentRoute] || NotFound     }   },   render (h) { return h(this.ViewComponent) } })ViewComponent 这个是什么?function么?为什么不带function关键字?
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 662 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信