mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-19 17:56:39 +08:00
16 lines
179 B
Vue
16 lines
179 B
Vue
<template>
|
|
<div>
|
|
{{ title }}
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
import {ref} from "vue";
|
|
|
|
const title = ref('Test Page')
|
|
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
</style> |