2024-Vue/C1-基础语法/06.JS表达式.html

41 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- 1. 导入vue.js的脚本文件 -->
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
</head>
<body>
<div id="app">
<p> {{ number+1 }}</p>
<p> {{ok ? 'True':'False'}}</p>
<p> {{ msg.split('').reverse().join('') }} </p>
<p :id=" 'list-'+id "></p>
<p> {{user.name}}</p>
</div>
</body>
<script>
// 将 Vue 对象中的createApp reactive 属性赋值给createApp reactive
const { createApp, reactive, ref } = Vue; // 解构赋值语法
// 创建一个 Vue 的应用程序
createApp({
// 组合式API 的 setup 用于设置响应式数据和方法
setup() {
const number = 0;
const ok = ref(true);
const msg = "ABC";
const id = 3;
const user = { name: 'Maxxie' }
// 返回数据
return {
number, ok, msg, id, user
}
}
}).mount('#app') // 将 Vue 应用程序挂载到app元素上
</script>
</html>