Skip to content

Instantly share code, notes, and snippets.

@Jarmahent
Created June 7, 2019 17:38
Show Gist options
  • Save Jarmahent/87352c422bac7e108521f3aa558860fc to your computer and use it in GitHub Desktop.
Save Jarmahent/87352c422bac7e108521f3aa558860fc to your computer and use it in GitHub Desktop.
<template>
<div>
<h1> Hello! My name is {{ Firstname }} {{ LastName }}</h1>
<h3> Location {{ location }}</h3>
<h1> About me: </h1>
<p>{{ about_me }}</p>
<h1>Projects I have worked on</h1>
<ul>
<li v-for="project in projects" v-bind:key="project.name">
<a :href="project.link">{{ project.name }} {{ project.dates }}</a>
</li>
</ul>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment