-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
dingcang
committed
Oct 15, 2019
1 parent
93cf247
commit fa895b7
Showing
37 changed files
with
1,448 additions
and
1,052 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,51 @@ | ||
<!-- <p align="center"> | ||
<img src=""/> | ||
</p> --> | ||
<p align="center"> | ||
<a href="https://sm.ms/image/dhjbI64lBYgPMiA" target="_blank"><img src="https://i.loli.net/2019/10/15/dhjbI64lBYgPMiA.png" ></a> | ||
</p> | ||
|
||
<p align="center"> | ||
<img src="https://img.shields.io/badge/npm-0.1.1_alpha.1-green"/> | ||
<img src="https://img.shields.io/badge/npm-0.2.0_alpha-green"/> | ||
<img src="https://img.shields.io/badge/license-MIT-green"/> | ||
</p> | ||
|
||
## Install | ||
|
||
```shell | ||
npm install evsmc-base-ui -S | ||
``` | ||
|
||
## Quick Start | ||
|
||
``` javascript | ||
import Vue from 'vue' | ||
import EvsmcBaseUi from 'evsmc-base-ui' | ||
|
||
Vue.use(EvsmcBaseUi) | ||
|
||
// or | ||
import { | ||
Add, | ||
BatchButton | ||
// ... | ||
} from 'element-ui' | ||
|
||
Vue.use(Add) | ||
Vue.use(BatchButton) | ||
``` | ||
|
||
For more information, please wait our documentation. | ||
|
||
## Browser Support | ||
|
||
Modern browsers and Internet Explorer 10+. | ||
|
||
<!-- ## Development | ||
Skip this part if you just want to use Element. --> | ||
|
||
## Changelog | ||
|
||
Detailed changes for each release are documented in the [release notes](https://github.com/dingcang/evsmc-base-ui/releases). | ||
|
||
## LICENSE | ||
|
||
[MIT](LICENSE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,27 @@ | ||
html,body { | ||
html { | ||
height: 100%; | ||
} | ||
body { | ||
height: 100%; | ||
margin: 0; | ||
padding: 30px 0 20px; | ||
box-sizing: border-box; | ||
} | ||
|
||
|
||
#app { | ||
height: 100%; | ||
width: 80%; | ||
min-width: 1000px; | ||
margin: 0 auto; | ||
display: flex; | ||
.menu { | ||
width: 200px; | ||
width: 220px; | ||
height: 100%; | ||
margin-right: 60px; | ||
} | ||
main { | ||
flex: 1; | ||
padding-left: 20px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -192,3 +192,8 @@ export default { | |
} | ||
} | ||
</script> | ||
<style lang="scss" scoped> | ||
.inline-style{ | ||
display:inline-block | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.