Skip to content
    在 Opshell 的 Blog 中:
  • 目前已分享 73 篇文章
  • 還有 180 個坑正在填補中
  • 已有: Loading 次觀看
  • 已有: Loading 個人來過
✍️ Opshell
📆 Last Updated:9/23/2025Created:2024-08-10
👀 已被閱讀: Loading
🏷️ TypeScriptvue
<template>
  <h1>Hello {{ msg }}</h1>
</template>

<script setup lang="ts">
import { ref } from 'vue';
const msg = ref<string>('world');
</script>

Released under the MIT License.