fix:更新ts配置文件
This commit is contained in:
@ -31,12 +31,7 @@
|
||||
ghost-class="ghost"
|
||||
class="canvas"
|
||||
>
|
||||
<template v-for="item in store.previewScheme" :key="item.id">
|
||||
<component
|
||||
:is="componentsList[item?.code]"
|
||||
:data="item"
|
||||
></component>
|
||||
</template>
|
||||
<NestedFunction v-model="store.previewScheme"></NestedFunction>
|
||||
</VueDraggable>
|
||||
</div>
|
||||
<!-- <div class="right">-->
|
||||
@ -47,11 +42,12 @@
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import {VueDraggable} from "vue-draggable-plus";
|
||||
import {onMounted, ref, watch} from 'vue';
|
||||
import {onMounted, watch} from 'vue';
|
||||
import {uuid} from 'lsp-uuid';
|
||||
import {componentScheme} from "@/schemes/scheme";
|
||||
import {useSchemeStore} from '@/stores/useSchemeStore';
|
||||
import {IComponent} from "@/type/IComponent";
|
||||
import NestedFunction from "@/components/NestedFunction.vue";
|
||||
|
||||
|
||||
let componentsList = [];
|
||||
|
||||
@ -6,17 +6,17 @@
|
||||
"es2020",
|
||||
"es2015.promise"
|
||||
],
|
||||
/* Bundler mode */
|
||||
"module": "esnext",
|
||||
"moduleResolution": "node",
|
||||
"sourceMap": true,
|
||||
"declaration": false,
|
||||
"emitDecoratorMetadata": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"resolveJsonModule": true,
|
||||
"skipLibCheck": true,
|
||||
/* Bundler mode */
|
||||
/* Linting */
|
||||
"compilerOptions": {
|
||||
"sourceMap": true,
|
||||
"declaration": false,
|
||||
"emitDecoratorMetadata": true,
|
||||
"resolveJsonModule": true,
|
||||
"skipLibCheck": true,
|
||||
"emitDeclarationOnly": true,
|
||||
"allowImportingTsExtensions": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"jsx": "preserve",
|
||||
"experimentalDecorators": true,
|
||||
|
||||
Reference in New Issue
Block a user