ホームページ  >  記事  >  ウェブフロントエンド  >  Vue コンポーネントを記述するにはどのような方法がありますか?

Vue コンポーネントを記述するにはどのような方法がありますか?

亚连
亚连オリジナル
2018-06-23 15:43:001013ブラウズ

この記事では主に 3 つの Vue コンポーネントの記述形式を詳しく紹介します。興味のある方は参考にしてください。

この記事の例は参考のために Vue コンポーネントの記述形式を共有します。次のように

最初のはスクリプトタグを使用します

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

    <-- 注意:使用<script>标签时,type指定为text/x-template,意在告诉浏览器这不是一段js脚本,浏览器在解析HTML文档时会忽略<script>标签内定义的内容。-->

    <script type="text/x-template" id="myComponent">//注意 type 和id。
      <p>This is a component!</p>
    </script>
  </body>
  <script src="js/vue.js"></script>
  <script>
    //全局注册组件
    Vue.component(&#39;my-component&#39;,{
      template: &#39;#myComponent&#39;
    })

    new Vue({
      el: &#39;#app&#39;
    })

  </script>
</html>

2番目のはテンプレートタグを使用します

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

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

    Vue.component(&#39;my-component&#39;,{
      template: &#39;#myComponent&#39;
    })

    new Vue({
      el: &#39;#app&#39;
    })

  </script>
</html>

3番目の単一ファイルコンポーネント

この方法は、vueの単一ページアプリケーションで一般的に使用されます。詳細については、公式 Web サイトを参照してください: https://cn.vuejs.org/v2/guide/single-file-components.html

接尾辞 .vue、コンポーネント Hello.vue を持つファイルを作成し、コンポーネント フォルダー

<template>
 <p class="hello">
  <h1>{{ msg }}</h1>
 </p>
</template>

<script>
export default {
 name: &#39;hello&#39;,
 data () {
  return {
   msg: &#39;欢迎!&#39;
  }
 }
}
</script>

app.vue

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

<script>
// 导入组件
import Hello from &#39;./components/Hello&#39;

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

上記は私がまとめたもので、将来的には皆さんのお役に立てれば幸いです。

関連記事:

JavaScriptで全選択キャンセル効果を実装する方法

JavaScriptを使用して左側のメニュー効果を実装する方法

vueを使用してトークン検証を実装する方法

方法Javascriptメカニズムを使用してカスタムイベントを実装します

以上がVue コンポーネントを記述するにはどのような方法がありますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。