Initial commit

This commit is contained in:
Tyler
2017-12-03 17:54:36 -05:00
commit 183542178b
31 changed files with 1063 additions and 0 deletions

20
src/components/Hello.vue Normal file
View File

@ -0,0 +1,20 @@
<template>
<div class="row">
<job v-for="(job, index) in jobs" :job="job" :key="job_id"></job>
</div>
</template>
<script>
import job from '@/components/Job';
export default {
name: 'hello',
components: {
job: job
},
data () {
return {
msg: 'Welcome to Your Vue.js App'
}
}
}
</script>