mirror of
https://gitee.com/blackfox/geekai.git
synced 2025-12-06 16:58:24 +08:00
14 lines
171 B
Vue
14 lines
171 B
Vue
<template>
|
|
<div>{{ title }}</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
import {ref} from "vue";
|
|
|
|
const title = ref('Test Page')
|
|
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
</style> |