mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-08-27 08:14:17 +00:00
setup
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<template>
|
||||
<div class="form-group" :class="{'has-error': form.errors.has(input_name)}">
|
||||
<label v-if="label">{{ label }}</label>
|
||||
<input type="text"
|
||||
:name="input_name"
|
||||
class="form-control"
|
||||
:placeholder="placeholder"
|
||||
v-model="form[input_name]"
|
||||
@keydown="form.errors.clear(input_name)"
|
||||
:readonly="readonly"
|
||||
>
|
||||
<div class="text-danger text-left" v-if="form.errors.has(input_name)" v-text="form.errors.get(input_name)"></div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script type="text/javascript">
|
||||
export default {
|
||||
props: {
|
||||
input_name: String,
|
||||
form: Object,
|
||||
placeholder: String,
|
||||
label: String,
|
||||
readonly: Boolean
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user