3种vue组件的书写形式

前端之家收集整理的这篇文章主要介绍了3种vue组件的书写形式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例为大家分享了vue组件的书写形式,供大家参考,具体内容如下

第一种

使用script标签

<-- 注意:使用<script><a href="https://www.jb51.cc/tag/biaoqian/" target="_blank" class="keywords">标签</a>时,type指定为text/x-template,意在告诉浏览器这不是一段js脚本,浏览器在解析HTML文档时会忽略<script><a href="https://www.jb51.cc/tag/biaoqian/" target="_blank" class="keywords">标签</a>内定义的<a href="https://www.jb51.cc/tag/neirong/" target="_blank" class="keywords">内容</a>。-->

<script type="text/x-template" id="myComponent"&gt;//注意 type 和id。
  <div>This is a component!</div>
</script>

第二种

使用template标签

<Meta charset="UTF-8">
<template id="myComponent"&gt;
  <div>This is a component!</div>
</template>

第三种

文件组件

这种方法常用在vue单页应用中。详情看官网:nofollow" href="https://cn.vuejs.org/v2/guide/single-file-components.html">https://cn.vuejs.org/v2/guide/single-file-components.html

创建.vue后缀的文件,组件Hello.vue,放到components文件夹中

{{ msg }}

app.vue

@H_404_77@ #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; }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/vue/34945.html

猜你在找的Vue相关文章