2020-02-16 18:30:00 +00:00
|
|
|
<template>
|
2020-03-01 03:37:02 +00:00
|
|
|
<div
|
|
|
|
class="ft-input-component"
|
|
|
|
:class="{ search: forceTextColor }"
|
|
|
|
>
|
2020-02-16 18:30:00 +00:00
|
|
|
<input
|
|
|
|
:id="id"
|
|
|
|
class="ft-input"
|
|
|
|
type="text"
|
|
|
|
:placeholder="placeholder"
|
2020-04-14 02:59:25 +00:00
|
|
|
@input="e => inputData = e.target.value"
|
2020-02-16 18:30:00 +00:00
|
|
|
>
|
|
|
|
<font-awesome-icon
|
|
|
|
v-if="showArrow"
|
|
|
|
icon="arrow-right"
|
|
|
|
class="inputAction"
|
2020-03-01 03:37:02 +00:00
|
|
|
@click="handleClick"
|
2020-02-16 18:30:00 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./ft-input.js" />
|
|
|
|
<style scoped src="./ft-input.css" />
|