You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<script setup>
import { ref } from"vue"constmsg=ref("Hello World")
</script>
<template>
<div>
<!-- The output of the page is expected to be Hello World -->
<h1>{{msg}}</h1>
</div>
</template>
Activity