index.vue 550 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div class="app-container home">
  3. <!-- <byTableDemo></byTableDemo> -->
  4. <!-- <el-input type="number" v-model='aaa' v-mousewheel></el-input> -->
  5. </div>
  6. </template>
  7. <script setup name="Index">
  8. import { createApp, onMounted } from 'vue'
  9. import byTableDemo from '../components/byTable/demo'
  10. import html2canvas from 'html2canvas'
  11. import JsPDF from 'jspdf'
  12. const aaa = ref(1)
  13. function goTarget(url) {
  14. window.open(url, '__blank')
  15. }
  16. // ​
  17. onMounted(() => {
  18. })
  19. </script>
  20. <style>
  21. </style>
  22. <style scoped lang="scss">
  23. .home {
  24. }
  25. </style>