dd
This commit is contained in:
18
src/pages/PkgsUsage/SortableJSComps.page.vue
Normal file
18
src/pages/PkgsUsage/SortableJSComps.page.vue
Normal file
@ -0,0 +1,18 @@
|
||||
<script setup lang="ts">
|
||||
const state = reactive({
|
||||
组件列表: [
|
||||
{ id: 1, name: '组件1' },
|
||||
{ id: 2, name: '组件2' },
|
||||
{ id: 3, name: '组件3' },
|
||||
],
|
||||
已选流程ID: [],
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<SortableComponentSelector :state="state" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped></style>
|
Reference in New Issue
Block a user