当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript d.v函数代码示例

本文整理汇总了TypeScript中@dojo/framework/widget-core/d.v函数的典型用法代码示例。如果您正苦于以下问题:TypeScript v函数的具体用法?TypeScript v怎么用?TypeScript v使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了v函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: v

			h.expectPartial('@slider1', () => v('input', {
				...sliderProps,
				key: 'slider1',
				disabled: true,
				name: '_min',
				value: '0',
				styles: {
					clip: 'rect(auto, 0px, auto, auto)'
				}
			}));
开发者ID:dojo,项目名称:widgets,代码行数:10,代码来源:RangeSlider.ts

示例2: render

	protected render() {
		const { activeCount, completedItems } = this.properties;
		const countLabel = activeCount === 1 ? 'item' : 'items';

		return v('footer', { classes: this.theme(css.footer) }, [
			v('span', { classes: this.theme(css.todoCount) }, [
				v('strong', [activeCount + ' ']),
				v('span', [countLabel + ' left'])
			]),
			w(Outlet, { id: 'filter', renderer: (matchDetails: MatchDetails) => {
				return w(TodoFilter, { activeFilter: matchDetails.params.filter });
			} }),
			completedItems ? v('button', {
				onclick: this.clearCompleted,
				innerHTML: 'Clear completed',
				classes: this.theme(css.clearCompleted)
			}) : null
		]);
	}
开发者ID:dojo,项目名称:examples,代码行数:19,代码来源:TodoFooter.ts

示例3: function

const expected = function(options: {open?: boolean, closeable?: boolean, heading?: string, transition?: boolean} = {}) {
	const {
		open = true,
		closeable = true,
		heading = null,
		transition = true
	} = options;
	return v('div', {
		classes: [ css.root, open ? css.open : null, fixedCss.rootFixed ]
	}, [
		w(GlobalEvent, { window: { resize: noop }, key: 'global' }),
		v('div', {
			'aria-level': heading,
			classes: [ css.title, closeable ? css.closeable : null, fixedCss.titleFixed, closeable ? fixedCss.closeableFixed : null ],
			role: 'heading'
		}, [
			v('button', {
				'aria-controls': '',
				'aria-expanded': `${open}`,
				classes: [ fixedCss.titleButtonFixed, css.titleButton ],
				disabled: !closeable,
				id: '',
				type: 'button',
				onclick: noop
			}, [
				v('span', { classes: css.arrow }, [
					w(Icon, { type: open ? 'downIcon' : 'rightIcon', theme: undefined })
				]),
				'test'
			])
		]),
		v('div', {
			'aria-hidden': open ? null : 'true',
			'aria-labelledby': '',
			classes: [ css.content, transition ? css.contentTransition : null, fixedCss.contentFixed ],
			styles: {
				marginTop: open ? '0px' : '-100px'
			},
			id: '',
			key: 'content'
		}, [ ])
	]);
};
开发者ID:bryanforbes,项目名称:widgets,代码行数:43,代码来源:TitlePane.ts

示例4: function

const expectedCloseButton = function() {
	return v('button', {
		classes: css.close,
		type: 'button',
		onclick: noop
	}, [
		'close ',
		w(Icon, { type: 'closeIcon', theme: undefined, classes: undefined })
	]);
};
开发者ID:dojo,项目名称:widgets,代码行数:10,代码来源:Dialog.ts

示例5: renderProgress

	protected renderProgress(percent: number): DNode[] {
		return [
			v('div', {
				classes: this.theme(css.progress),
				styles: {
					width: `${percent}%`
				}
			})
		];
	}
开发者ID:dojo,项目名称:widgets,代码行数:10,代码来源:index.ts

示例6: v

					tags.map((tag, index) =>
						v('a', {
							href: '',
							onclick: (event: MouseEvent) => {
								event.preventDefault();
								this.properties.fetchFeed({ type: 'tag', page: 0, filter: tag });
							},
							key: `${index}`,
							classes: ['tag-pill', 'tag-default']
						}, [tag])
开发者ID:dojo,项目名称:examples,代码行数:10,代码来源:Tags.ts

示例7: render

	protected render(): VNode {
		const { text, valid } = this.properties;

		return v('div', {
			key: 'root',
			classes: this.theme([
				css.root,
				valid === true ? css.valid : null,
				valid === false ? css.invalid : null
			])
		}, [
			text && v('p', {
				key: 'text',
				classes: this.theme(css.text),
				'aria-hidden': 'true',
				title: text
			}, [text])
		]);
	}
开发者ID:dojo,项目名称:widgets,代码行数:19,代码来源:index.ts

示例8: render

	protected render() {
		const {
			favoriteArticle,
			followUser,
			deleteArticle,
			username,
			favorited,
			favoritesCount,
			isAuthenticated,
			createdAt,
			slug,
			authorProfile
		} = this.properties;

		return v('div', { classes: 'article-meta' }, [
			w(Link, { to: 'user', params: { username: authorProfile.username } }, [
				v('img', { src: authorProfile.image })
			]),
			v('div', { classes: 'info' }, [
				w(Link, { to: 'user', classes: 'author', params: { username: authorProfile.username } }, [
					authorProfile.username
				]),
				v('span', { classes: 'date' }, [new Date(createdAt).toDateString()])
			]),
			isAuthenticated
				? username === authorProfile.username
					? w(ArticleAuthorControls, {
							slug,
							deleteArticle
						})
					: w(ArticleControls, {
							favorited,
							followUser,
							favoriteArticle,
							favoritesCount,
							slug,
							following: authorProfile.following,
							authorUsername: authorProfile.username
						})
				: null
		]);
	}
开发者ID:dojo,项目名称:examples,代码行数:42,代码来源:ArticleMeta.ts


注:本文中的@dojo/framework/widget-core/d.v函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。