mirror of
https://github.com/sky-systems/sky_phone.git
synced 2026-09-04 09:13:24 +00:00
28 lines
398 B
Vue
28 lines
398 B
Vue
<script setup lang="ts">
|
|
defineOptions({ inheritAttrs: false })
|
|
|
|
withDefaults(
|
|
defineProps<{
|
|
inset?: boolean
|
|
strong?: boolean
|
|
}>(),
|
|
{
|
|
inset: true,
|
|
strong: true,
|
|
},
|
|
)
|
|
</script>
|
|
|
|
<template>
|
|
<ul
|
|
v-bind="$attrs"
|
|
class="sky-list-card"
|
|
:class="{
|
|
'sky-list-card--inset': inset,
|
|
'sky-list-card--strong': strong,
|
|
}"
|
|
>
|
|
<slot />
|
|
</ul>
|
|
</template>
|