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>
|