mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +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 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
|
||||||
|
@ -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: {
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* 是否折叠操作栏
|
* 是否折叠操作栏
|
||||||
|
@ -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'>>()
|
||||||
|
|
||||||
/** 注入相关属性 */
|
/** 注入相关属性 */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user