mirror of
https://github.com/RainCraft-Server/raincraft-server.github.io.git
synced 2025-12-15 12:47:44 +00:00
11 lines
183 B
Vue
11 lines
183 B
Vue
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
|
|
const message = ref('Hello World!')
|
|
</script>
|
|
|
|
<template>
|
|
<div class="my-custom-content">
|
|
{{ message }}
|
|
</div>
|
|
</template>
|