12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- 线索一张图
- </template>
- <script lang="ts">
- import {
- defineComponent,
- computed,
- onMounted,
- ref,
- reactive,
- watch,
- getCurrentInstance,
- ComponentInternalInstance,
- toRefs,
- nextTick
- } from 'vue'
- import {useStore} from 'vuex'
- import {useRouter, useRoute} from 'vue-router'
- import {ElMessage, ElMessageBox} from "element-plus";
- export default defineComponent({
- name: '',
- components: {},
- props: {},
- setup(props, {emit}) {
- const store = useStore();
- const router = useRouter();
- const route = useRoute();
- const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
- const state = reactive({})
- onMounted(() => {
- })
- return {
- ...toRefs(state),
- }
- },
- })
- </script>
- <style scoped lang="scss">
- </style>
|