一.組件的3種使用方式 *.vue文件,用於單頁/多頁應用中,不同於以上兩種全局組件。 ...
一.組件的3種使用方式
- 使用<script>標簽。
<body> <script type="text/x-template" id="component"> <div>This is a component!</div> </script> </body>
- 使用<template>標簽。
<body> <template id="component"> <div>This is a component!</div> </template> </body>
- 單文件組件
*.vue文件,用於單頁/多頁應用中,不同於以上兩種全局組件。