- 授权协议: MIT
- 开发语言: HTML/CSS
- 操作系统: 跨平台
- 软件首页: https://www.iviewui.com/
- 软件文档: https://www.iviewui.com/docs/guide/introduce
软件介绍
iView 是一套基于 Vue.js 的 UI 组件库,主要服务于 PC 界面的中后台产品。
特性
高质量、功能丰富
友好的 API ,自由灵活地使用空间
使用单文件的 Vue 组件化开发模式
基于 npm + webpack + babel 开发,支持 ES2015
安装
使用 npm
$ npm install iview --save
或使用 <script> 全局引用
<script type="text/javascript" src="iview.min.js"></script>
示例
<template>
<Slider :value.sync="value" range></Slider>
</template>
<script>
export default {
data () {
return {
value: [20, 50]
}
}
}
</script>
The Practice of Programming
Brian W. Kernighan、Rob Pike / Addison-Wesley / 1999-2-14 / USD 49.99
With the same insight and authority that made their book The Unix Programming Environment a classic, Brian Kernighan and Rob Pike have written The Practice of Programming to help make individual progr......一起来看看 《The Practice of Programming》 这本书的介绍吧!
