qrcode.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <template>
  2. <div>
  3. <nut-docheader
  4. :name="$route.name"
  5. :chName="$route.params.chnName"
  6. type="Filter"
  7. desc=""
  8. :showQrCode="true"></nut-docheader>
  9. <h5>示例</h5>
  10. <nut-codebox :code="demo1"></nut-codebox>
  11. <h5>Props</h5>
  12. <div class="tbl-wrapper">
  13. <table class="u-full-width">
  14. <thead>
  15. <tr>
  16. <th>参数</th>
  17. <th>说明</th>
  18. <th>类型</th>
  19. <th>默认值</th>
  20. <th>可选值</th>
  21. </tr>
  22. </thead>
  23. <tbody>
  24. <tr>
  25. <td></td>
  26. <td></td>
  27. <td></td>
  28. <td></td>
  29. <td></td>
  30. </tr>
  31. </tbody>
  32. </table>
  33. </div>
  34. <h5>Events</h5>
  35. <div class="tbl-wrapper">
  36. <table class="u-full-width">
  37. <thead>
  38. <tr>
  39. <th>事件名</th>
  40. <th>说明</th>
  41. <th>回调参数</th>
  42. </tr>
  43. </thead>
  44. <tbody>
  45. <tr>
  46. <td></td>
  47. <td></td>
  48. <td></td>
  49. </tr>
  50. </tbody>
  51. </table>
  52. </div>
  53. </div>
  54. </template>
  55. <script>
  56. export default {
  57. data(){
  58. return{
  59. demo1:`test`
  60. }
  61. },
  62. methods:{
  63. }
  64. }
  65. </script>
  66. <style lang="scss">
  67. </style>