File tree Expand file tree Collapse file tree 3 files changed +6
-34
lines changed Expand file tree Collapse file tree 3 files changed +6
-34
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,11 +4,8 @@ import camelCase from 'lodash/camelCase'
44import App from './App.vue'
55import router from './router'
66import store from './store/store'
7- import BaseIcon from '@/components/BaseIcon'
87import 'nprogress/nprogress.css'
98
10- Vue . component ( 'BaseIcon' , BaseIcon )
11-
129Vue . config . productionTip = false
1310
1411const requireComponent = require . context (
Original file line number Diff line number Diff line change 22 <div >
33 <h1 >Create an Event</h1 >
44 <form @submit.prevent =" createEvent" >
5- <BaseSelect label =" Select a category" :options =" categories" />
5+ <div class =" field" >
6+ <label >Select a category</label >
7+ <select v-model =" event.categories" >
8+ <option v-for =" cat in categories" :key =" cat" >{{ cat }}</option >
9+ </select >
10+ </div >
611
712 <h3 >Name & describe your event</h3 >
813 <BaseInput label =" Title" v-model =" event.title" type =" text" placeholder =" Title" class =" field" />
You can’t perform that action at this time.
0 commit comments