Skip to content

Commit 8eca50b

Browse files
committed
update
1 parent cb3aee1 commit 8eca50b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
templates/
12
packages/
23
examples/
34
public/
45
dist/
56
src/
67

8+
Guide.md
79
vue.config.js
810
babel.config.js
911
.travis.yml

examples/views/Docs.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<el-aside width="240px">
55
<el-scrollbar class="full-screen-height">
66
<ul class="componet-list">
7-
<li v-for="vo in componets" :key="vo.name" @click="clickHandler(vo.name)">
7+
<li v-for="vo in componets" :key="vo.name">
88
<router-link :to="{ path: '/docs/' + vo.name }">
9-
<el-link :type="vo.name === activeName ? 'primary' : 'default'">
9+
<el-link :type="vo.name === activeName ? 'primary' : 'default'" @click="clickHandler(vo.name)">
1010
{{vo.title}}
1111
</el-link>
1212
</router-link>

examples/views/Home.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ export default defineComponent({
6363
<style lang="scss" scoped>
6464
$height: 80px;
6565
.el-header{
66+
border-bottom: 1px solid #f8f8f8;
6667
.container {
6768
width: 1140px;
6869
margin: 0 auto;
69-
border-bottom: 1px solid #f8f8f8;
7070
}
7171
.title {
7272
font-size: 32px;

0 commit comments

Comments
 (0)