parsley/app/javascript/components/TheTaskListList.vue

25 lines
314 B
Vue
Raw Normal View History

2018-08-28 10:39:11 -05:00
<template>
<div>
<h1>Tasks</h1>
<select>
<option v-for="l in taskLists" :value="l.id">{{l.name}}</option>
</select>
</div>
</template>
<script>
export default {
data() {
return {
taskLists: []
}
}
}
</script>
<style lang="scss" scoped>
</style>