index.vue 460 B

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