demoTpl.vue 476 B

123456789101112131415161718192021222324
  1. <template>
  2. <div>
  3. <h1>组件名</h1>
  4. <p>组件说明文字</p>
  5. <!-- DEMO区域 -->
  6. <!-- <nut-switch :height="30" :width="60" @switch-on="switchOn" @switch-off="switchOff"></nut-switch> -->
  7. <!-- DEMO代码 -->
  8. <pre><code v-highlight>this.$dialog(options);</code></pre>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. data(){
  14. return{
  15. }
  16. },
  17. methods:{
  18. }
  19. }
  20. </script>
  21. <style lang="scss">
  22. </style>