-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #899 from ethereum/dev
Deploy v1.3.2
- Loading branch information
Showing
39 changed files
with
302 additions
and
293 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,52 @@ | ||
<template> | ||
<RandomList :n="4" :items="items"></RandomList> | ||
<RandomList :n="7" :items="items"></RandomList> | ||
</template> | ||
|
||
<script> | ||
/* | ||
* | ||
*/ | ||
import RandomList from './RandomList.vue' | ||
export default { | ||
components: { RandomList }, | ||
components: { RandomList }, | ||
data() { | ||
const items = [ | ||
{ | ||
name: "Gitcoin", | ||
url: "https://gitcoin.co", | ||
description: "a network of incentivized open-source developers" | ||
}, | ||
{ | ||
name: "Cent", | ||
url: "https://beta.cent.co", | ||
description: "a social network where you can earn money by posting" | ||
}, | ||
{ | ||
name: "CryptoKitties", | ||
url: "https://www.cryptokitties.co", | ||
description: "a game where you collect and breed digital collectible cats" | ||
}, | ||
{ | ||
name: "DAI", | ||
url: "https://makerdao.com/en/", | ||
description: "a stable cryptocurrency that holds value at $1 USD" | ||
} | ||
]; | ||
return {items} | ||
} | ||
data() { | ||
const items = [ | ||
{ | ||
name: 'Gitcoin', | ||
url: 'https://gitcoin.co', | ||
description: 'a network of incentivized open-source developers' | ||
}, | ||
{ | ||
name: 'Cent', | ||
url: 'https://beta.cent.co', | ||
description: 'a social network where you can earn money by posting' | ||
}, | ||
{ | ||
name: 'Gods Unchained', | ||
url: 'https://godsunchained.com/', | ||
description: 'a competitive collectible card game' | ||
}, | ||
{ | ||
name: 'DAI', | ||
url: 'https://makerdao.com/en/', | ||
description: 'a stable cryptocurrency that holds value at $1 USD' | ||
}, | ||
{ | ||
name: 'Decentraland', | ||
url: 'https://decentraland.org/', | ||
description: 'a virtual world owned and built by its users' | ||
}, | ||
{ | ||
name: 'Dharma', | ||
url: 'https://www.dharma.io/', | ||
description: 'the easiest way to earn interest on your cryptocurrency' | ||
}, | ||
{ | ||
name: 'Augur', | ||
url: 'https://www.augur.net/', | ||
description: 'The world’s most accessible, no-limit betting exchange' | ||
} | ||
] | ||
return { items } | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.