mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-02 15:16:37 +08:00
13 lines
161 B
Vue
13 lines
161 B
Vue
|
|
<template>
|
||
|
|
<v-card
|
||
|
|
v-bind="$attrs"
|
||
|
|
v-on="$listeners"
|
||
|
|
>
|
||
|
|
<slot />
|
||
|
|
</v-card>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default { name: 'AppCard' }
|
||
|
|
</script>
|