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