Files
Yi.Framework/Yi.Vue2.x/src/components/app/Card.vue
2022-04-26 01:34:47 +08:00

13 lines
161 B
Vue

<template>
<v-card
v-bind="$attrs"
v-on="$listeners"
>
<slot />
</v-card>
</template>
<script>
export default { name: 'AppCard' }
</script>