demoTpl.vue 437 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div>
  3. <!-- 组件名和描述 -->
  4. <nut-demoheader
  5. :name="$route.name"
  6. ></nut-demoheader>
  7. <!-- DEMO区域 -->
  8. <!-- <nut-switch :height="30" :width="60" @switch-on="switchOn" @switch-off="switchOff"></nut-switch> -->
  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>