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