IKun UI 正在参加 2021 年度 OSC 中国开源项目评选,请投票支持!
IKun UI 在 2021 年度 OSC 中国开源项目评选 中已获得 {{ projectVoteCount }} 票,请投票支持!
2021 年度 OSC 中国开源项目评选 正在火热进行中,快来投票支持你喜欢的开源项目!
2021 年度 OSC 中国开源项目评选 >>> 中场回顾
IKun UI 获得 2021 年度 OSC 中国开源项目评选「最佳人气项目」 !
授权协议 MIT
操作系统 跨平台
软件类型 开源软件
所属分类 Web应用开发CSS框架
开源组织
地区 国产
投 递 者
适用人群 未知
收录时间 2023-08-07

软件简介

ikun-ui 是基于 Svelte.js 的 UnoCSS UI 库,可用于制作网站。

特性

  • 组件化设计 - 提供整洁美观的 UI 组件
  • 预设 CSS - 有 UnoCSS 预设包可供使用,轻松渲染 UI
  • 主题配置 - 使用 unocss 等属性模式进行设计。支持主题配置,自定义主题。

安装

pnpm add @ikun-ui/core && pnpm add -D unocss && pnpm add -D @ikun-ui/preset

使用

/*App.svelte*/
<script lang="ts">
    import { KButton } from "@ikun-ui/core";
    import 'virtual:uno.css'
</script>
<KButton>KButton</KButton>

自定义 UnoCSS 配置

// unocss.config.ts
import { defineConfig, presetAttributify, presetIcons, presetUno } from 'unocss';
import { presetIkun, getCSSPreflights, getSafeList } from '@ikun-ui/preset';

export default defineConfig({
	presets: [presetUno(), presetAttributify(), presetIcons(), presetIkun()],
	safelist: [...getSafeList()],
	preflights: [
		{
			layer: 'base',
			getCSS: () => `:root {${getCSSPreflights()}}`
		}
	]
});
展开阅读全文

代码

的 Gitee 指数为
超过 的项目

评论

点击加入讨论🔥(22) 发布并加入讨论🔥
暂无内容
发表了博客
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
发表了问答
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
暂无内容
22 评论
11 收藏
分享
OSCHINA
登录后可查看更多优质内容
返回顶部
顶部