gpt4 book ai didi

javascript - 不使用 App.vue 时带有 Vite 的 Vue 3 渲染空白页面

转载 作者:行者123 更新时间:2023-12-04 08:01:00 25 4
gpt4 key购买 nike

设置
我已经使用 vite 初始化了一个新项目在基于 Arch 的操作系统上。
当我尝试从 vue docs 创建简单计数器时,元素不渲染。
代码
索引.html:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
</head>
<body>
<div id="counter">
Counter: {{ counter }}
</div>

<script type="module" src="/src/main.js"></script>
</body>
</html>
main.js
import { createApp } from 'vue'

var CounterApp = {
data() {
return {
counter: 0
}
},
mounted() {
setInterval(() => {
this.counter++
}, 1000)
}
}


createApp(CounterApp).mount('#counter')
当我检查元素时,它被注释掉:
console
问题
这是为什么?以及如何解决错误?

最佳答案

这样做会替换正常的挂载过程,并将根元素视为 App 的模板字符串。零件。由于模板字符串需要运行时编译器,因此您需要使用完整的构建。应该有一个控制台警告。
为避免在完整版本中增加应用程序的大小(约 30%),建议保持安装点不变,并提供 App组件自己的适当模板:
索引.html

<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
main.js
import { createApp } from 'vue'
import App from './App.vue'

createApp(App).mount('#app')
应用程序.vue
<template>
<div id="counter">
Counter: {{ counter }}
</div>
</template>
<script>
export default {
name: 'App',
data() {
return {
counter: 0
}
},
mounted() {
setInterval(() => {
this.counter++
}, 1000)
}
}
</script>

关于javascript - 不使用 App.vue 时带有 Vite 的 Vue 3 渲染空白页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66470249/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com