fix(Card): prevent double class

This commit is contained in:
Benjamin Canac
2022-05-23 12:17:42 +02:00
parent 33a31205a1
commit 06b07e292e

View File

@@ -107,5 +107,8 @@ const cardClass = computed(() => {
</script>
<script lang="ts">
export default { name: 'UCard' }
export default {
name: 'UCard',
inheritAttrs: false
}
</script>