blob: 3590fa071dc3f7b63e7e4bc2d5f1dacf0431ee63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<template>
<v-card variant="outlined">
<v-card-item>
<v-card-title>{{ title }}</v-card-title>
<div :class="contentSize" v-html="content"></div>
</v-card-item>
</v-card>
</template>
<script>
export default {
name: "SubCard",
data: () => ({
//
}),
props: ["title", "content", "contentSize"],
};
</script>
|