mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
19 lines
209 B
Vue
19 lines
209 B
Vue
<template>
|
|
<div v-html="content"></div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'my-html',
|
|
|
|
props: {
|
|
content: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
setup() {},
|
|
};
|
|
</script>
|