xyyd-fatfox/src/layout/background/BackgroundSwtich.tsx

11 lines
222 B
TypeScript
Raw Normal View History

2024-09-29 15:17:52 +08:00
import { defineComponent } from "vue";
export default defineComponent({
setup() {
return (
2024-09-29 16:16:53 +08:00
<div class={"w-full h-full bg-red-300"}>
background
2024-09-29 15:17:52 +08:00
</div>
)
}
})