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 v-html="content"></div> </v-card-item> </v-card> </template> <script> export default { name: "SubCard", data: () => ({ // }), props: ["title", "content"], }; </script>