fix: 修复RayCollapseGrid组件一些小问题

This commit is contained in:
XiaoDaiGua-Ray 2023-08-29 10:30:21 +08:00
parent b1890df8f6
commit 4dd2024bec
3 changed files with 25 additions and 25 deletions

View File

@ -105,7 +105,12 @@ module.exports = {
'no-labels': 2, // 禁止标签声明 'no-labels': 2, // 禁止标签声明
'no-lone-blocks': 2, // 禁止不必要的嵌套块 'no-lone-blocks': 2, // 禁止不必要的嵌套块
'no-multi-spaces': 1, // 禁止使用多余的空格 'no-multi-spaces': 1, // 禁止使用多余的空格
'no-multiple-empty-lines': [1, { max: 2 }], // 空行最多不能超过 `2` 行 'no-multiple-empty-lines': [
'error',
{
max: 2,
},
], // 空行最多不能超过 `2` 行
'no-new-func': 2, // 禁止使用 `new Function` 'no-new-func': 2, // 禁止使用 `new Function`
'no-new-object': 2, // 禁止使用 `new Object` 'no-new-object': 2, // 禁止使用 `new Object`
'no-new-require': 2, // 禁止使用 `new require` 'no-new-require': 2, // 禁止使用 `new require`

View File

@ -9,6 +9,16 @@
* @remark * @remark
*/ */
/**
*
* <https://www.naiveui.com/zh-CN/dark/components/grid>
*
*
* 使
*
* `NGrid` `NGridItem` , 使使 `NGridItem`
*/
import './index.scss' import './index.scss'
import { collapseGridProps } from './props' import { collapseGridProps } from './props'
@ -76,14 +86,10 @@ const RayCollapseGrid = defineComponent({
> >
{this.$slots.default?.()} {this.$slots.default?.()}
<NGridItem suffix class="ray-collapse-grid__suffix--btn"> <NGridItem suffix class="ray-collapse-grid__suffix--btn">
{{ <NSpace justify="end">
default: ({ overflow }: { overflow: boolean }) => ( {this.$slots.action?.()}
<NSpace justify="end"> {this.CollapseIcon()}
{this.$slots.action?.()} </NSpace>
{overflow ? this.CollapseIcon() : ''}
</NSpace>
),
}}
</NGridItem> </NGridItem>
</NGrid> </NGrid>
), ),
@ -94,14 +100,3 @@ const RayCollapseGrid = defineComponent({
}) })
export default RayCollapseGrid export default RayCollapseGrid
/**
*
* <https://www.naiveui.com/zh-CN/dark/components/grid>
*
*
*
* 使
*
* `NGrid` `NGridItem` , 使使 `NGridItem`
*/

View File

@ -170,13 +170,13 @@ const MockDemo = defineComponent({
<NFormItemGi label="邮箱"> <NFormItemGi label="邮箱">
<NInput v-model:value={this.email} clearable /> <NInput v-model:value={this.email} clearable />
</NFormItemGi> </NFormItemGi>
<NFormItemGi>
<NButton type="primary" onClick={this.getPerson.bind(this)}>
</NButton>
</NFormItemGi>
</> </>
), ),
action: () => (
<NButton type="primary" onClick={this.getPerson.bind(this)}>
</NButton>
),
}} }}
</RayCollapseGrid> </RayCollapseGrid>
</NForm> </NForm>