Skip to content

Commit

Permalink
add NoticeBar
Browse files Browse the repository at this point in the history
  • Loading branch information
icarusion committed Jun 4, 2018
1 parent 62d9f74 commit 9ef8f0a
Show file tree
Hide file tree
Showing 3 changed files with 116 additions and 0 deletions.
34 changes: 34 additions & 0 deletions src/code/notice-bar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
let code = {};

code.import = `
"usingComponents": {
"i-notice-bar": "../../dist/notice-bar/index"
}
`;
code.usage = `
通告栏
<i-notice-bar>
2018年世界杯,将于6月14日至7月15日举行
</i-notice-bar>
icon 通告栏
<i-notice-bar icon="systemprompt">
2018年世界杯,将于6月14日至7月15日举行
</i-notice-bar>
关闭 通告栏
<i-notice-bar icon="systemprompt" closable>
2018年世界杯,将于6月14日至7月15日举行
</i-notice-bar>
滚动 通告栏
<i-notice-bar icon="systemprompt" loop>
2018年世界杯,将于6月14日至7月15日举行;2018年世界杯,将于6月14日至7月15日举行;
</i-notice-bar>
`;

export default code;
7 changes: 7 additions & 0 deletions src/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,13 @@ const routers = [
},
component: (resolve) => require(['./views/components/steps.vue'], resolve)
},
{
path: '/components/notice-bar',
meta: {
title: '通告栏 NoticeBar'
},
component: (resolve) => require(['./views/components/notice-bar.vue'], resolve)
},
{
path: '*',
redirect: '/'
Expand Down
75 changes: 75 additions & 0 deletions src/views/components/notice-bar.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<template>
<i-article>
<article>
<h1>NoticeBar 通告栏</h1>
<Anchor title="使用指南" h2></Anchor>
<p>在 .json 中引入组件</p>
<i-code bg lang="json">{{ code.import }}</i-code>
<Anchor title="示例" h2></Anchor>
<i-code bg lang="html">{{ code.usage }}</i-code>
<ad></ad>

<div class="api">
<Anchor title="API" h2></Anchor>
<Anchor title="NoticeBar properties" h3></Anchor>
<table>
<thead>
<tr>
<th>属性</th>
<th>说明</th>
<th>类型</th>
<th>默认值</th>
</tr>
</thead>
<tbody>
<tr>
<td>i-class</td>
<td>自定义 class 类名</td>
<td>String</td>
<td>-</td>
</tr>
<tr>
<td>closable</td>
<td>是否显示关闭按钮</td>
<td>Boolean</td>
<td>false</td>
</tr>
<tr>
<td>icon</td>
<td>自定义图标</td>
<td>String</td>
<td>-</td>
</tr>
<tr>
<td>loop</td>
<td>文字是否滚动显示</td>
<td>Boolean</td>
<td>false</td>
</tr>
</tbody>
</table>
</div>
</article>
</i-article>
</template>
<script>
import iArticle from '../../components/article.vue';
import iCode from 'iCode';
import Demo from '../../components/demo.vue';
import Code from '../../code/notice-bar';
import Anchor from '../../components/anchor.vue';
export default {
components: {
iArticle,
iCode,
Demo,
Anchor
},
data () {
return {
code: Code
}
}
}
</script>

0 comments on commit 9ef8f0a

Please sign in to comment.