id为app的元素里面为什么不显示文字?
按道理应该显示:Hello Vue 3 with Composition API
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style>
#app {
color: red;
font-size: 20px;
width: 100px;
height: 100px;
background-color: blue;
display: flex;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<!-- 挂载点 -->
<div id="app">{{ message }}</div>
<script type="module">
import { createApp, ref } from 'https://cdn.jsdelivr.net/npm/vue@3.5.13/+esm';
// 创建一个组件
const App = {
setup() {
// 使用组合式API定义响应式数据
const message = ref('Hello Vue 3 with Composition API!');
console.log('message:', message)
return {
message
};
}
};
// 创建Vue应用实例并挂载到#app元素上
createApp(App).mount('#app');
</script>
</body>
</html>
将 Vue 的 CDN 链接改为:
https://unpkg.com/vue@3/dist/vue.esm-browser.js
这个链接是 Vue 3 官方推荐的 ESM 格式的 CDN 链接。使用这个链接后,应该就可以正常显示文字了。
补充