Vue 我们的第一个 SFC 网页
在"App.vue"中编写代码
现在我们有了一个干净的项目,在 <template>
标签内添加一个标题,如下所示:
<template>
<h1>Hello World!</h1>
</template>
<script></script>
<style></style>
保存"App.vue"文件,通过终端中的本地主机链接转到浏览器。 你看到结果了吗? 现在,每次在 VS Code 中保存更改时,浏览器都会自动更新,而无需手动刷新浏览器。
现在让我们看一个稍微大一点的 Vue 示例:
示例
App.vue
:
<template>
<h1>{{ message }}</h1>
</template>
<script>
export default {
data() {
return {
message: 'This is some text'
};
}
};
</script>
<style></style>
运行示例 »
注意: 在上面的例子中,export default
使得 'main.js' 可以用 import App from './App.vue'
捕获数据,以便将其挂载到 'index.html' 内的 <div id="app">
标签上。