vuejs-challenges icon indicating copy to clipboard operation
vuejs-challenges copied to clipboard

1 - 你好 !

Open wtingting opened this issue 3 years ago • 0 comments

<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>

wtingting avatar Sep 15 '22 07:09 wtingting