57 lines
1.1 KiB
Vue
57 lines
1.1 KiB
Vue
|
|
<template>
|
||
|
|
<div class="start">
|
||
|
|
<div class="createProject" v-if="false">
|
||
|
|
|
||
|
|
</div>
|
||
|
|
<editContent v-else></editContent>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<script lang="ts">
|
||
|
|
import { defineComponent,computed,ref,watch,nextTick,createVNode,toRefs, reactive} from 'vue'
|
||
|
|
// import setDesignItem from '@/component/Detail/setDesignItem2.vue'
|
||
|
|
import { ExclamationCircleOutlined } from '@ant-design/icons-vue';
|
||
|
|
import { Https } from "@/tool/https";
|
||
|
|
import { useStore } from "vuex";
|
||
|
|
import { useI18n } from 'vue-i18n'
|
||
|
|
import editContent from './editContent/index.vue'
|
||
|
|
|
||
|
|
|
||
|
|
import { gsap, TweenMax } from "gsap";
|
||
|
|
import { ScrollTrigger } from "gsap/ScrollTrigger";
|
||
|
|
export default defineComponent({
|
||
|
|
components:{
|
||
|
|
editContent
|
||
|
|
},
|
||
|
|
setup(props,{emit}) {
|
||
|
|
const store = useStore();
|
||
|
|
const data = reactive({
|
||
|
|
|
||
|
|
|
||
|
|
})
|
||
|
|
const dataTime = reactive({
|
||
|
|
selectTime:null as any,
|
||
|
|
})
|
||
|
|
const dataDom = reactive({
|
||
|
|
})
|
||
|
|
|
||
|
|
return{
|
||
|
|
...toRefs(dataDom),
|
||
|
|
...toRefs(data),
|
||
|
|
}
|
||
|
|
},
|
||
|
|
|
||
|
|
provide() {
|
||
|
|
return {
|
||
|
|
}
|
||
|
|
},
|
||
|
|
|
||
|
|
})
|
||
|
|
</script>
|
||
|
|
<style lang="less" scoped>
|
||
|
|
.start{
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
overflow: hidden;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
</style>
|