11 lines
186 B
TypeScript
11 lines
186 B
TypeScript
|
import { defineComponent } from 'vue'
|
||
|
|
||
|
export default defineComponent(() => {
|
||
|
|
||
|
return () => (
|
||
|
<div class="w-full h-full bg-[#ecfbff] flex flex-col">
|
||
|
middle
|
||
|
</div>
|
||
|
)
|
||
|
})
|