2022-03-18 22:35:45 +00:00
|
|
|
import { h, defineComponent } from 'vue';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Astro passes `children` as a string of HTML, so we need
|
|
|
|
* a wrapper `div` to render that content as VNodes.
|
|
|
|
*
|
|
|
|
* This is the Vue + JSX equivalent of using `<div v-html="value" />`
|
|
|
|
*/
|
|
|
|
const StaticHtml = defineComponent({
|
|
|
|
props: {
|
|
|
|
value: String,
|
2022-06-23 15:10:54 +00:00
|
|
|
name: String,
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
2022-06-23 15:10:54 +00:00
|
|
|
setup({ name, value }) {
|
2022-03-18 22:35:45 +00:00
|
|
|
if (!value) return () => null;
|
2022-06-23 15:10:54 +00:00
|
|
|
return () => h('astro-slot', { name, innerHTML: value });
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Other frameworks have `shouldComponentUpdate` in order to signal
|
|
|
|
* that this subtree is entirely static and will not be updated
|
|
|
|
*
|
|
|
|
* Fortunately, Vue is smart enough to figure that out without any
|
|
|
|
* help from us, so this just works out of the box!
|
|
|
|
*/
|
|
|
|
|
|
|
|
export default StaticHtml;
|