aboutsummaryrefslogtreecommitdiff
path: root/src/components/SubCard.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/SubCard.vue')
1 files changed, 2 insertions, 4 deletions
diff --git a/src/components/SubCard.vue b/src/components/SubCard.vue
index 5b611f6..ab03ac3 100644
--- a/src/components/SubCard.vue
+++ b/src/components/SubCard.vue
@@ -2,9 +2,7 @@
<v-card variant="outlined">
<v-card-item>
<v-card-title>{{ title }}</v-card-title>
- <div class="text-caption">
- {{ content }}
- </div>
+ <div v-html="content"></div>
</v-card-item>
</v-card>
</template>
@@ -14,7 +12,7 @@ export default {
name: "SubCard",
data: () => ({
title: "Default Title",
- content: "Bruh",
}),
+ props: ["content"],
};
</script>