- App.vue
<script setup>
import Content from "./components/Content.vue";
</script>
<template>
<div>
<Content />
</div>
</template>
定义相应式变量还是需要vue引入
<script setup>
import Content from "./components/Content.vue";
import { ref } from "vue";
const b=ref(100000)
const a=20;
console.log(a);
</script>
<template>
<div>
<h2>{{a}}</h2>
<h2>{{b}}</h2>
<Content />
</div>
</template>
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。