chore: 配置全局删除依赖命令

This commit is contained in:
wangxuefeng
2025-02-20 16:02:01 +08:00
parent af044793ab
commit b15a13a223
17 changed files with 368 additions and 12833 deletions

View File

@@ -0,0 +1,24 @@
<template>
<div ref="container"></div>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
import { Engine } from '@vtj/pro';
import { StorageService } from '@/server';
const container = ref();
const service = new StorageService();
const engine = new Engine({
container,
service,
project: {
id: 'test',
name: '测试'
}
});
engine.ready(() => {
console.log('ready');
});
</script>