adds Template custom object, starts SlotSelect component
This commit is contained in:
29
web/vue/src/components/planner/SlotSelect.vue
Normal file
29
web/vue/src/components/planner/SlotSelect.vue
Normal file
@@ -0,0 +1,29 @@
|
||||
<template>
|
||||
<div>
|
||||
<a @click="$emit('add', item.id)"
|
||||
class="has-text-success">
|
||||
<span class="icon is-large">
|
||||
<i class="mdi mdi-36px mdi-table-plus"></i>
|
||||
</span>
|
||||
</a>
|
||||
<div class="select">
|
||||
<select>
|
||||
<option>Lundi</option>
|
||||
<option>Mardi</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="select">
|
||||
<select>
|
||||
<option>Breakfast</option>
|
||||
<option>Lunch</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'SlotSelect',
|
||||
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user