Great big ESLint

This commit is contained in:
Joel Collins 2019-11-11 16:33:43 +00:00
parent 051eabbdc3
commit ebcb938da1
48 changed files with 3890 additions and 2536 deletions

View file

@ -1,30 +1,41 @@
<template>
<div>
<label class="uk-form-label">{{label}}</label>
<label class="uk-form-label">{{ label }}</label>
<input
<input
class="uk-input uk-form-small"
type="text"
v-bind:name="name"
v-bind:value="value"
v-bind:placeholder="placeholder"
@input="$emit('input',$event.target.value)"
>
:name="name"
:value="value"
:placeholder="placeholder"
@input="$emit('input', $event.target.value)"
/>
</div>
</template>
<script>
export default {
name: 'textInput',
name: "TextInput",
props: [
'placeholder',
'label',
'name',
'value'
]
}
props: {
placeholder: {
type: String,
required: true
},
label: {
type: String,
required: true
},
name: {
type: String,
required: true
},
value: {
type: String,
required: true
}
}
};
</script>
<style scoped></style>
<style scoped></style>