使用Vue開發傳統多頁面總結

模板語法使用script方式或template方式寫入

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Vue</title>
  <style>
    [v-cloak] {
      display: none;
    }
  </style>
</head>

<body>
  <div id="app" v-cloak>
    {{ message }}{{a}}
    <div>dsadsa</div>
    <script-component>我是插槽</script-component>
    <template-component></template-component>
    <template id='component_template' v-if="false">
      <p>這是一段使用"template標籤"創建的組件模板內容。</p>
    </template>
  </div>
  <script src="./js/vue.js"></script>
  <script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
  <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
  <script type="text/x-template" id='component_script'>
    <h4>這是一段使用"script"創建的組件模板內容。</h4>
    <slot></slot>
  </script>
  <script>
    var vm = new Vue({
      el: '#app',
      data: {
        message: 'ssss' + new Date().toDateString(),
        a: 'sss',
      },
      components: {
        'script-component': {
          template: '#component_script'
        },
        'template-component': {
          template: '#component_template'
        }
      }
    })
  </script>
</body>

</html>

 

發佈了123 篇原創文章 · 獲贊 16 · 訪問量 3萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章