Vue leaning(入门)第四弹
组件:基础的基础组件 (Component, portlet)组件就是页面上的一小块区域内容,完成一个小的页面功能<div id="myApp">
<today-weather></today-weather>
</div>
<script>
Vue.component('today-weather', {
template: '<div>今天下雨,出不去啦,干什么呢?看YouTube吧!</div>'
});
var myApp = new Vue({
el: '#myApp',
});
</scrip...