index.vue 913 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. 企业一张图
  3. <div class="main">
  4. </div>
  5. </template>
  6. <script lang="ts">
  7. import {
  8. defineComponent,
  9. computed,
  10. onMounted,
  11. ref,
  12. reactive,
  13. watch,
  14. getCurrentInstance,
  15. ComponentInternalInstance,
  16. toRefs,
  17. nextTick
  18. } from 'vue'
  19. import {useStore} from 'vuex'
  20. import {useRouter, useRoute} from 'vue-router'
  21. import {ElMessage, ElMessageBox} from "element-plus";
  22. export default defineComponent({
  23. name: '',
  24. components: {},
  25. props: {},
  26. setup(props, {emit}) {
  27. const store = useStore();
  28. const router = useRouter();
  29. const route = useRoute();
  30. const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
  31. const state = reactive({})
  32. onMounted(() => {
  33. })
  34. return {
  35. ...toRefs(state),
  36. }
  37. },
  38. })
  39. </script>
  40. <style scoped lang="scss">
  41. .main {
  42. width: 200px;
  43. height: 500px;
  44. background-color: red;
  45. }
  46. </style>