欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue组件

程序员文章站 2022-05-18 09:06:31
一.组件的3种使用方式 *.vue文件,用于单页/多页应用中,不同于以上两种全局组件。 ......

一.组件的3种使用方式

  1. 使用<script>标签。
    <body>
      <script type="text/x-template" id="component">
          <div>This is a component!</div>
      </script>
    </body>
  2. 使用<template>标签。
    <body>
       <template id="component">
           <div>This is a component!</div>
       </template>
    </body>
  3. 单文件组件

    *.vue文件,用于单页/多页应用中,不同于以上两种全局组件。