mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-08-19 12:24:01 +00:00
19 lines
379 B
Vue
19 lines
379 B
Vue
<template>
|
|
<div class="form-group">
|
|
<label v-if="label" for="name">{{ label }}</label>
|
|
<input type="text"
|
|
class="form-control"
|
|
:value="value"
|
|
:readonly="true"
|
|
>
|
|
</div>
|
|
</template>
|
|
|
|
<script type="text/javascript">
|
|
export default {
|
|
props: {
|
|
label: String,
|
|
value: String
|
|
}
|
|
}
|
|
</script> |