// 你的答案 <script setup> import { ref } from "vue" const msg = ref("你好!") </script> <template> <div> <h1>{{msg}}</h1> </div> </template>