fix:modified to the previous injection

This commit is contained in:
elonehoo
2022-11-11 23:41:56 +08:00
parent 724af94c08
commit b68103455b

View File

@@ -25,7 +25,7 @@
</template> </template>
<div class="table-toolbar-inner"> <div class="table-toolbar-inner">
<n-checkbox-group v-model:value="checkList" @update:value="onChange"> <n-checkbox-group v-model:value="checkList" @update:value="onChange">
<vuedraggable <Draggable
v-model="columnsList" v-model="columnsList"
animation="300" animation="300"
item-key="key" item-key="key"
@@ -81,7 +81,7 @@
</div> </div>
</div> </div>
</template> </template>
</vuedraggable> </Draggable>
</n-checkbox-group> </n-checkbox-group>
</div> </div>
</n-popover> </n-popover>
@@ -101,7 +101,7 @@
VerticalRightOutlined, VerticalRightOutlined,
VerticalLeftOutlined, VerticalLeftOutlined,
} from '@vicons/antd'; } from '@vicons/antd';
import vuedraggable from 'vuedraggable'; import Draggable from 'vuedraggable';
import { useDesignSetting } from '@/hooks/setting/useDesignSetting'; import { useDesignSetting } from '@/hooks/setting/useDesignSetting';
interface Options { interface Options {
@@ -115,7 +115,7 @@
components: { components: {
SettingOutlined, SettingOutlined,
DragOutlined, DragOutlined,
vuedraggable, Draggable,
VerticalRightOutlined, VerticalRightOutlined,
VerticalLeftOutlined, VerticalLeftOutlined,
}, },