猿问

vue 基础问题

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关键字?


Qyouu
浏览 663回答 1
1回答
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答