11 lines
133 B
Vue
11 lines
133 B
Vue
|
|
<template>
|
||
|
|
<div>
|
||
|
|
{{ msg }}
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<script setup>
|
||
|
|
import { ref } from "vue";
|
||
|
|
|
||
|
|
const msg = ref("hekko");
|
||
|
|
</script>
|