mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-12-29 12:16:08 +00:00
28 lines
476 B
Vue
28 lines
476 B
Vue
|
<script setup>
|
||
|
const props = defineProps({
|
||
|
platform: {
|
||
|
type: String,
|
||
|
required: true
|
||
|
}
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<template v-if="$slots.windows && platform === 'windows'">
|
||
|
<slot name="windows"></slot>
|
||
|
</template>
|
||
|
|
||
|
<template v-if="$slots.linux && platform === 'linux'">
|
||
|
<slot name="linux"></slot>
|
||
|
</template>
|
||
|
|
||
|
<template v-if="$slots.macos && platform === 'macos'">
|
||
|
<slot name="macos"></slot>
|
||
|
</template>
|
||
|
</template>
|
||
|
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|