This repository has been archived on 2023-08-30. You can view files and clone it, but cannot push or open issues/pull-requests.
bytedo
/
wcui
Archived
1
0
Fork 0
wcui/src/core.js

21 lines
294 B
JavaScript

/**
* {全新的组件核心库}
* @author yutent<yutent.io@gmail.com>
* @date 2023/03/03 11:21:44
*/
export function css(str) {}
const foo = css`
.foo {
color: red;
color: green;
background: green;
.bar {
display: flex;
}
}
`
const bar = html` <h1></h1> `
wcui是一套基于`Web Components`的UI组件库, 宗旨是追求简单、实用、不花哨。
JavaScript 95.2%
CSS 4.8%