import { defineComponent } from "vue"; const Device = defineComponent({ setup() { return () => ( <>

Device

); }, }); export default Device;