bug fixed: 修复组件潜在的修改props属性的问题

This commit is contained in:
XiaoDaiGua-Ray 2023-08-02 15:44:59 +08:00
parent 74da406808
commit a69a032517
3 changed files with 5 additions and 3 deletions

View File

@ -17,12 +17,13 @@ import { NCard, NGrid, NGridItem, NSpace } from 'naive-ui'
import RayIcon from '@/components/RayIcon'
import { call } from '@/utils/vue/index'
import { cloneDeep } from 'lodash-es'
const RayCollapseGrid = defineComponent({
name: 'RayCollapseGrid',
props: collapseGridProps,
setup(props) {
const modelCollapsed = ref(props.value)
const modelCollapsed = ref(cloneDeep(props.open))
const handleCollapse = () => {
modelCollapsed.value = !modelCollapsed.value

View File

@ -5,7 +5,7 @@ import type { CollapseToggleText } from './type'
import type { AnyFC, MaybeArray } from '@/types/modules/utils'
export const collapseGridProps = {
value: {
open: {
/**
*
*

View File

@ -46,6 +46,7 @@ import props from './props'
import print from 'print-js'
import { uuid } from '@use-utils/hook'
import { exportFileToXLSX } from '@use-utils/xlsx'
import { cloneDeep } from 'lodash-es'
import type { ActionOptions } from './type'
import type { WritableComputedRef } from 'vue'
@ -83,7 +84,7 @@ const RayTable = defineComponent({
return cssVar
})
const tableSize = ref(props.size)
const tableSize = ref(cloneDeep(props.size))
const tableMethods = ref<Omit<DataTableInst, 'clearFilter'>>()
/** 注入相关属性 */