9 lines
172 B
TypeScript
9 lines
172 B
TypeScript
|
import { defineComponent } from "vue";
|
||
|
|
||
|
export default defineComponent(() => {
|
||
|
return () => (
|
||
|
<div class={"w-full h-full"}>
|
||
|
|
||
|
</div>
|
||
|
)
|
||
|
})
|