Skip to content

Instantly share code, notes, and snippets.

@adrianjost
Last active November 25, 2019 17:37
Show Gist options
  • Save adrianjost/28fa2aa9b6cd5b3072530c21f6500cf3 to your computer and use it in GitHub Desktop.
Save adrianjost/28fa2aa9b6cd5b3072530c21f6500cf3 to your computer and use it in GitHub Desktop.
How to extend the RenderHtml.vue
<script>
import RenderHtml from "./RenderHtml.vue";
import FancyButton from "@components/FancyButton.vue";
export default {
components: {
FancyButton,
},
...RenderHtml,
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment