
Vue_供应链系统开发
_dalianmiao
这个作者很懒,什么都没留下…
展开
-
vue-router 的命名视图的使用
在开发中我们经常会遇到这种情况,就是有个项目的header是公用的,在各个页面中都会使用到,所以我们会将其设置为一个公共组件,然后在各个页面中引用,但是每个页面都去引用真是太麻烦了,所以在Vue中注册引用,这样就会在所有的页面中都有header了 例子:<template lang="html"> <div id="app"> <app-head...原创 2018-07-25 14:50:29 · 6527 阅读 · 3 评论 -
Vue 之render函数的学习与使用
render渲染函数 我们可以生成DOM元素在template中,但是我们也可以使用render渲染函数&lt;h1&gt;{{ blogTitle }}&lt;/h1&gt;在渲染函数中:render: function (createElement) { return createElement('h1', this.blogTitle)}在这两种情况下,Vue...原创 2018-07-26 19:19:05 · 2486 阅读 · 0 评论