index.vue 629 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div class="container">
  3. <template>
  4. <div class="head-title">
  5. <!-- <span>{{ route.meta.title }} </span> -->
  6. <span>物联 </span>
  7. </div>
  8. </template>
  9. </div>
  10. </template>
  11. <script setup>
  12. import { onMounted, ref, h } from "vue";
  13. import { useRoute } from "vue-router";
  14. import { columns } from "./config";
  15. import { Message, Notification } from '@arco-design/web-vue'
  16. const route = useRoute();
  17. </script>
  18. <style scoped lang="less">
  19. .container {
  20. .head-title {
  21. display: flex;
  22. justify-content: space-between;
  23. }
  24. .form-row {
  25. display: flex;
  26. }
  27. }
  28. </style>