mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-21 02:36:39 +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> |