1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <div class="container">
- <template>
- <div class="head-title">
- <!-- <span>{{ route.meta.title }} </span> -->
- <span>物联 </span>
-
- </div>
-
- </template>
- </div>
- </template>
- <script setup>
- import { onMounted, ref, h } from "vue";
- import { useRoute } from "vue-router";
- import { columns } from "./config";
- import { Message, Notification } from '@arco-design/web-vue'
- const route = useRoute();
- </script>
- <style scoped lang="less">
- .container {
- .head-title {
- display: flex;
- justify-content: space-between;
- }
- .form-row {
- display: flex;
- }
- }
- </style>
|