index.vue 479B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div class="subPage">
  3. 1
  4. </div>
  5. </template>
  6. <script>
  7. import tableSearch from '@/components/tableSearch/index'
  8. export default {
  9. name: '',
  10. data () {
  11. return {
  12. }
  13. },
  14. components: {
  15. tableSearch,
  16. },
  17. mounted () {
  18. this.$nextTick(function () {
  19. })
  20. },
  21. methods: {
  22. }
  23. }
  24. </script>
  25. <!-- Add "scoped" attribute to limit CSS to this component only -->
  26. <style lang="scss" scoped>
  27. @import "page.scss";
  28. </style>