如何在 vue js 中添加 css 和 html 就像 angular css ,html 和 typescript 在单独的文件中

How add css and html in vue js Like an angular css ,html and typescript in separate file

如何在vue js中分别添加css和html

我是 vue 的初学者,正在学习 vue js,但在我脑海中很少有疑问如何单独添加 css 和 html 文件,如 angular 在此先感谢。

你可以像这样创建一个文件组件:

<template>
  <div>This will be pre-compiled</div>
</template>
<script src="./my-component.js"></script>
<style src="./my-component.css"></style>