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 RayIcon from '@/components/RayIcon'
import { call } from '@/utils/vue/index' import { call } from '@/utils/vue/index'
import { cloneDeep } from 'lodash-es'
const RayCollapseGrid = defineComponent({ const RayCollapseGrid = defineComponent({
name: 'RayCollapseGrid', name: 'RayCollapseGrid',
props: collapseGridProps, props: collapseGridProps,
setup(props) { setup(props) {
const modelCollapsed = ref(props.value) const modelCollapsed = ref(cloneDeep(props.open))
const handleCollapse = () => { const handleCollapse = () => {
modelCollapsed.value = !modelCollapsed.value modelCollapsed.value = !modelCollapsed.value

View File

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

View File

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