generated from avior/template-web-astro
14 lines
264 B
Plaintext
14 lines
264 B
Plaintext
---
|
|
import { getCurrentPlatform } from 'libs/TauriUtils'
|
|
|
|
let platform = getCurrentPlatform()
|
|
---
|
|
|
|
{platform === 'linux' && (
|
|
<slot name="linux"><slot /></slot>
|
|
)}
|
|
|
|
{(platform === 'windows' || platform === 'default') && (
|
|
<slot name="windows"><slot /></slot>
|
|
)}
|