Skip to content

Commit

Permalink
Merge pull request #1058 from ethereum/random-list-fix
Browse files Browse the repository at this point in the history
Add sync to DefaultList
  • Loading branch information
samajammin authored May 28, 2020
2 parents efe6a99 + 8133ed7 commit 9f6bbba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/.vuepress/components/DefaultList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div>
<ul>
<li v-for="item in this.items">
<a :href="item.url" target="_blank" rel="noopener noreferrer">{{
<a :href.sync="item.url" target="_blank" rel="noopener noreferrer">{{
item.name
}}</a
>, {{ item.description }}
Expand Down
2 changes: 1 addition & 1 deletion docs/.vuepress/components/RandomList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default {
return { random: random, selected: [] }
},
beforeMount() {
created() {
this.selectItems()
},
Expand Down

0 comments on commit 9f6bbba

Please sign in to comment.