2 Commits

Author SHA1 Message Date
653fc7b09d feat: init 2023-10-01 01:17:53 +08:00
620154793b feat: init 2023-10-01 01:15:26 +08:00
4 changed files with 2 additions and 16 deletions

View File

@@ -1,15 +1,5 @@
# umi project
# 默认全局
## Getting Started
src/global.less
Install dependencies,
```bash
$ yarn
```
Start the dev server,
```bash
$ yarn start
```

BIN
public/user.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
src/assets/user.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -1,14 +1,10 @@
import styles from './index.less';
import { Button } from 'antd'
import { Button as ButtonMobileV2 } from 'antd-mobile-v2'
import { Button as ButtonMobileV5 } from 'antd-mobile'
export default function IndexPage() {
return (
<div>
<h1 className={styles.title}>Page index</h1>
<Button type={"primary"}>Click</Button>
<ButtonMobileV2>Click</ButtonMobileV2>
<ButtonMobileV5>Click</ButtonMobileV5>
</div>
);
}