组件:基础的基础

知识点

  • 组件(Component,Portlet)

组件

组件就是页面上的一小块区域内容,完成一个小的页面功能,请参照视频第六课。

综合例

  1. <div id="myApp">
  2. <today-weather></today-weather>
  3. </div>
  4. <script>
  5. Vue.component('today-weather', {
  6. template: '<div>今天下雨,出不去啦,干什么呢?看Youtube吧!</div>'
  7. });
  8. var myApp = new Vue({
  9. el: '#myApp',
  10. });
  11. </script>