Created
November 14, 2016 00:23
-
-
Save igeligel/20fa00afa2babb2dc78c248b01fe69d2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <template v-for="language in languages"> | |
| <developer-chip | |
| :name="language.name" | |
| :image="language.image" | |
| :description="language.description"> | |
| </developer-chip> | |
| </template> | |
| <script> | |
| var languages: [{ | |
| name: 'C#', | |
| image: CsharpIcon, | |
| description: 'csharp', | |
| }, { | |
| name: 'Java', | |
| image: JavaIcon, | |
| description: 'csharp', | |
| }, { | |
| name: 'JavaScript', | |
| image: JavaScriptIcon, | |
| description: 'csharp', | |
| }, { | |
| name: 'HTML5', | |
| image: Html5Icon, | |
| description: 'csharp', | |
| }, { | |
| name: 'CSS3', | |
| image: Css3Icon, | |
| description: 'csharp', | |
| }, { | |
| name: 'Haskell', | |
| image: HaskellIcon, | |
| description: 'csharp', | |
| }, { | |
| name: 'Pascal', | |
| },], | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment