1.0.4 • Published 3 years ago

@hunterliu/code-block v1.0.4

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

@hunterliu/code-block

npm i @hunterliu/code-block
<template>
  <CodeBlock
    :importComponentInstanceFn="() => import('path/to/component.vue')"
    :importComponentRawFn="() => import('path/to/component.vue?raw')"
  ></CodeBlock>
</template>
<script>
import { CodeBlock } from '@hunterliu/code-block'

export default {
  components: {
    CodeBlock
  }
}
</script>