Skip to content

Icon 图标

基于字体的图标集,包含了大多数常见场景的图标。

支持平台

安卓iosweb微信小程序支付宝小程序QQ小程序
xxx

示例

html
<template>
	<t-page title='图标'>
		<t-card class="mltr.30" title='Icon 图标' sub-title="200余款内置图标,支持字体编辑工具添加删除定义自己喜欢的图标,支持图片."></t-card>
		<introduction title="基础功能+主题展示">
			<t-row>
				<t-icon class="mr.30-s.50" name="setting"></t-icon>
				<t-icon class="mr.30-s.50" :hover="true" name="phone-fill" type="success"></t-icon>
				<t-icon class="mr.30-s.50" name="map-fill" type="error"></t-icon>
				<t-icon class="mr.30-s.50" name="eye-fill" type="primary"></t-icon>
				<t-icon class="mr.30-s.50" name="photo-fill" type="warning"></t-icon>
				<t-icon class="mr.30-s.50" name="cube" type="primary"></t-icon>
			</t-row>
		</introduction>
		<introduction title="主题尺寸">
			<t-row>
				<t-row class="mr.30-faic">
					<t-text type="primary" class="mr.5" size="large">大</t-text>
					<t-icon size="large" type="primary" name="mic"></t-icon>
				</t-row>
				<t-row class="mr.30-faic">
					<t-text type="success" class="mr.5" size="large">中</t-text>
					<t-icon class="mr.15" size="medium" :disabled="true" name="phone-fill" type="success"></t-icon>
				</t-row>
				<t-row class="mr.30-faic">
					<t-text type="error" class="mr.5" size="large">小</t-text>
					<t-icon class="mr.15" size="small" name="map-fill" type="error"></t-icon>
				</t-row>
				<t-row class="mr.30-faic">
					<t-text type="primary" class="mr.5" size="large">迷你</t-text>
					<t-icon class="mr.15" size="mini" name="eye-fill" type="primary"></t-icon>
				</t-row>
			</t-row>
		</introduction>
		<introduction title="样式设置">
			<t-icon name="volume-fill" class="bg.#f56c6c-r.200-w.80-h.80-c.#fff-s.50-sta-slh.80"
				type="primary"></t-icon>
		</introduction>
		<introduction title="使用图片">
			<t-icon class="s.150" name="/static/image/logo.png"></t-icon>
		</introduction>
		<introduction title="使用图片" class="mb.50">
			<t-icon name="/static/image/logo.png" class="s.250" :preview="false"></t-icon>
		</introduction>
	</t-page>
</template>

Props

名称描述类型默认值可选值
name图标名称String'photo'-
size按钮尺寸String'medium''large', 'medium', 'small', 'mini'
type组件场景String'''info', 'primary', 'error', 'warning', 'success'
disabled是否禁用Booleanfalsetrue, false
stop是否阻止事件冒泡Booleanfalsetrue, false
hover是否有鼠标悬停效果Booleanfalsetrue, false
effect主题效果String'''normal', 'dark', 'light', 'plain'

Events

事件名描述回调参数
click图标被点击时触发MouseEvent

Methods

方法名说明参数
setValue设置图标值-

Slots

名称描述
defaultTIcon 组件提供了一个默认插槽,用于放置自定义内容。