vuejs-challenges
vuejs-challenges copied to clipboard
1 - 你好 !
<script setup>
import { ref } from "vue"
const msg = ref("Hello World")
</script>
<template>
<div>
<!-- The output of the page is expected to be Hello World -->
<h1>{{msg}}</h1>
</div>
</template>