1.0.0 • Published 4 years ago

md-doc-vue-loader v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
4 years ago

md-doc-vue-loader

markdown doc use vue template and component

can use vue template mode

<template>
  <div id="test-block">This is a test block! {{msg}}</div>
</template>
<script>
  export default {
    data () {
      return {
        msg: 'Hello world!'
      }
    }
  }
</script>
<style>
  #test-block {
    color: green;
  }
</style>

can use vue component mode

import demo1 from "./demo1.vue"