webfansplz / vuejs-challenges

Collection of Vue.js challenges
https://vuejs-challenges.netlify.app/
MIT License
2.73k stars 189 forks source link

1 - 你好 ! #2784

Open deamaruNote opened 3 months ago

deamaruNote commented 3 months ago
<script setup>
import { ref } from "vue"
const msg = ref("Hello World")
</script>

<template>
  <div>
    <!-- 页面的期望输出是Hello World -->
    <h1>{{ msg }}</h1>
  </div>
</template>