mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 19:42:07 +08:00
bug fixed: 修复组件潜在的修改props属性的问题
This commit is contained in:
parent
74da406808
commit
a69a032517
@ -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
|
||||
|
@ -5,7 +5,7 @@ import type { CollapseToggleText } from './type'
|
||||
import type { AnyFC, MaybeArray } from '@/types/modules/utils'
|
||||
|
||||
export const collapseGridProps = {
|
||||
value: {
|
||||
open: {
|
||||
/**
|
||||
*
|
||||
* 是否折叠操作栏
|
||||
|
@ -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'>>()
|
||||
|
||||
/** 注入相关属性 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user