File tree 3 files changed +6
-34
lines changed
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'
4
4
import App from './App.vue'
5
5
import router from './router'
6
6
import store from './store/store'
7
- import BaseIcon from '@/components/BaseIcon'
8
7
import 'nprogress/nprogress.css'
9
8
10
- Vue . component ( 'BaseIcon' , BaseIcon )
11
-
12
9
Vue . config . productionTip = false
13
10
14
11
const requireComponent = require . context (
Original file line number Diff line number Diff line change 2
2
<div >
3
3
<h1 >Create an Event</h1 >
4
4
<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 >
6
11
7
12
<h3 >Name & describe your event</h3 >
8
13
<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