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
pull/1/head
yutent 2023-03-03 19:01:38 +08:00
parent b24ee758ce
commit ed54057b5f
1 changed files with 20 additions and 0 deletions

20
src/core.js Normal file
View File

@ -0,0 +1,20 @@
/**
* {全新的组件核心库}
* @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> `