Commit 62a40f4f855ec27b36dc6a6ebeb1910644fc55f7

Authored by 梁灏
1 parent 944853d4

LICENSE add ionicons

update issue template、LICENSE add ionicons、update README
.github/ISSUE_TEMPLATE.md
... ... @@ -4,19 +4,22 @@ issue 仅用于提交 bug 或 feature 及 文档错误,其余疑问恕不作
4 4 <!--
5 5 我们十分感谢有价值的 issue 贡献者,所以请填写以下内容。如果提问不符要求、在文档中已有解答、已有相同 issue,我们将直接 close,感谢理解。
6 6 -->
  7 +<!--
  8 +点击 Preview 按钮预览,无误后再提交 issue
  9 +-->
7 10  
8 11 ### iView 版本号
9   -<!-- 0.9.10 -->
  12 +<!-- 2.0.0-rc.5 -->
10 13  
11 14 ### 操作系统/浏览器 版本号
12   -<!-- macOS/Chrome 54 -->
  15 +<!-- macOS/Chrome 56 -->
13 16  
14 17 ### Vue 版本号
15   -<!-- 1.0.26 -->
  18 +<!-- 2.2.1 -->
16 19  
17   -### 能够复现问题的在线示例
  20 +### 能够复现问题的在线示例(重要)
18 21 <!-- 使用下面的在线链接快速创建示例 -->
19   -<!-- https://codepen.io/anon/pen/NbEbja -->
  22 +<!-- https://codepen.io/anon/pen/BWwVoy -->
20 23  
21 24 ### 复现步骤
22 25  
... ...
... ... @@ -129,4 +129,26 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
129 129 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
130 130 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
131 131 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
132   -SOFTWARE.
133 132 \ No newline at end of file
  133 +SOFTWARE.
  134 +
  135 +The MIT License (MIT)
  136 +
  137 +Copyright (c) 2016 Drifty (http://drifty.com/)
  138 +
  139 +Permission is hereby granted, free of charge, to any person obtaining a copy
  140 +of this software and associated documentation files (the "Software"), to deal
  141 +in the Software without restriction, including without limitation the rights
  142 +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  143 +copies of the Software, and to permit persons to whom the Software is
  144 +furnished to do so, subject to the following conditions:
  145 +
  146 +The above copyright notice and this permission notice shall be included in
  147 +all copies or substantial portions of the Software.
  148 +
  149 +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  150 +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  151 +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  152 +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  153 +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  154 +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  155 +THE SOFTWARE.
134 156 \ No newline at end of file
... ...
README.md
... ... @@ -83,10 +83,7 @@ Normal browsers and Internet Explorer 9+.
83 83 - [ionicons](https://github.com/driftyco/ionicons)
84 84 - [Ant Design](https://github.com/ant-design/ant-design)
85 85  
86   -## Related open source projects
87   -In iView, Some of the components and style codes refer to the following projects:
88   -- [AntDesign](https://github.com/ant-design/ant-design)
89   -- [Element](https://github.com/ElemeFE/element)
90   -- [vue-antd](https://github.com/okoala/vue-antd)
91   -- [vue-beauty](https://github.com/FE-Driver/vue-beauty)
92   -- [Vux](https://github.com/airyland/vux)
93 86 \ No newline at end of file
  87 +## License
  88 +[MIT](http://opensource.org/licenses/MIT)
  89 +
  90 +Copyright (c) 2016-present, iView
94 91 \ No newline at end of file
... ...
examples/routers/slider.vue
... ... @@ -6,8 +6,8 @@
6 6 {{ value1 }}{{value2}}
7 7 <div @click="value1 = 13">change value1</div>
8 8 <br>
9   - <Slider :value="value9" :tip-format="format"></Slider>
10   - <Slider :value="value10" :tip-format="hideFormat"></Slider>
  9 + <Slider v-model="value9" :tip-format="format"></Slider>
  10 + <Slider v-model="value10" :tip-format="hideFormat"></Slider>
11 11 </div>
12 12 </template>
13 13 <script>
... ...