1<template> 2 <code class="code text-zinc-700 bg-zinc-200 dark:text-zinc-300 dark:bg-zinc-800 rounded-md"> 3 <slot /> 4 </code> 5</template> 6 7<style scoped> 8.code { 9 display: inline-block; 10 margin-inline: .1rem; 11 padding-inline: .5rem; 12 text-box-trim: trim-start; 13 14 &::before { 15 content: ''; 16 } 17 18 &::after { 19 content: ''; 20 } 21} 22</style>