亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue組件的書寫形式有哪些

發布時間:2021-08-12 09:55:22 來源:億速云 閱讀:82 作者:小新 欄目:web開發

這篇文章將為大家詳細講解有關vue組件的書寫形式有哪些,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

第一種使用script標簽

<!DOCTYPE html>
<html>
  <body>
    <div id="app">
      <my-component></my-component>
    </div>

    <-- 注意:使用<script>標簽時,type指定為text/x-template,意在告訴瀏覽器這不是一段js腳本,瀏覽器在解析HTML文檔時會忽略<script>標簽內定義的內容。-->

    <script type="text/x-template" id="myComponent">//注意 type 和id。
      <div>This is a component!</div>
    </script>
  </body>
  <script src="js/vue.js"></script>
  <script>
    //全局注冊組件
    Vue.component('my-component',{
      template: '#myComponent'
    })

    new Vue({
      el: '#app'
    })

  </script>
</html>

第二種使用template標簽

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title></title>
  </head>
  <body>
    <div id="app">
      <my-component></my-component>
    </div>

    <template id="myComponent">
      <div>This is a component!</div>
    </template>
  </body>
  <script src="js/vue.js"></script>
  <script>

    Vue.component('my-component',{
      template: '#myComponent'
    })

    new Vue({
      el: '#app'
    })

  </script>
</html>

第三種 單文件組件

這種方法常用在vue單頁應用中。詳情看官網:https://cn.vuejs.org/v2/guide/single-file-components.html

創建.vue后綴的文件,組件Hello.vue,放到components文件夾中

<template>
 <div class="hello">
  <h2>{{ msg }}</h2>
 </div>
</template>

<script>
export default {
 name: 'hello',
 data () {
  return {
   msg: '歡迎!'
  }
 }
}
</script>

app.vue

<!-- 展示模板 -->
<template>
 <div id="app">
  <img src="./assets/logo.png">
  <hello></hello>
 </div>
</template>

<script>
// 導入組件
import Hello from './components/Hello'

export default {
 name: 'app',
 components: {
  Hello
 }
}
</script>
<!-- 樣式代碼 -->
<style>
#app {
 font-family: 'Avenir', Helvetica, Arial, sans-serif;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 text-align: center;
 color: #2c3e50;
 margin-top: 60px;
}
</style>

關于“vue組件的書寫形式有哪些”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

囊谦县| 滦平县| 峨山| 宜昌市| 兴安县| 阿坝县| 平陆县| 土默特右旗| 兰州市| 丹凤县| 济宁市| 葫芦岛市| 东丽区| 南澳县| 锡林浩特市| 长武县| 东乡县| 南丹县| 四子王旗| 获嘉县| 广宗县| 德清县| 和田县| 阳谷县| 都昌县| 虞城县| 邵武市| 望江县| 嘉祥县| 普陀区| 怀来县| 安西县| 陆河县| 蓬安县| 肥西县| 临泽县| 龙海市| 鄯善县| 上蔡县| 库车县| 西华县|