Initial commit
This commit is contained in:
20
src/components/Hello.vue
Normal file
20
src/components/Hello.vue
Normal 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>
|
Reference in New Issue
Block a user