[improvement] Panel: tsx (#2782)

This commit is contained in:
neverland 2019-02-18 20:10:56 +08:00 committed by GitHub
parent 7b238ed1e7
commit ad27b885c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 3 deletions

View File

@ -23,7 +23,7 @@ export type CellSlots = DefaultSlots & {
};
export type CellEvents = {
onClick(event: Event): void;
onClick?(event: Event): void;
};
const [sfc, bem] = use('cell');

View File

@ -3,9 +3,30 @@ import Cell from '../cell';
import CellGroup from '../cell-group';
import { inherit } from '../utils/functional';
// Types
import { CreateElement, RenderContext } from 'vue/types';
import { ScopedSlot, DefaultSlots } from '../utils/use/sfc';
export type PanelProps = {
icon?: string;
desc?: string;
title?: string;
status?: string;
};
export type PanelSlots = DefaultSlots & {
header?: ScopedSlot;
footer?: ScopedSlot;
};
const [sfc, bem] = use('panel');
function Panel(h, props, slots, ctx) {
function Panel(
h: CreateElement,
props: PanelProps,
slots: PanelSlots,
ctx: RenderContext<PanelProps>
) {
const Content = () => [
slots.header ? (
slots.header()
@ -41,4 +62,4 @@ Panel.props = {
status: String
};
export default sfc(Panel);
export default sfc<PanelProps>(Panel);