# fluentform/3.6.61/resources/assets/admin/components/templates/inputFile.vue

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 3.6.61. 17 lines.

- Page: https://pluginprobe.com/plugins/fluentform/3.6.61/code/resources/assets/admin/components/templates/inputFile.vue
- Raw: https://pluginprobe.com/plugins/fluentform/3.6.61/raw/resources/assets/admin/components/templates/inputFile.vue
- Modified: 2020-12-01T16:51:26+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluentform/3.6.61/code/resources/assets/admin/components/templates/inputFile.vue#L10-L20`.

```vue
<template>
    <withLabel :item="item">
        <el-button type="info">{{ item.settings.btn_text }}</el-button>
    </withLabel>
</template>

<script>
import withLabel from './withLabel.vue';

export default {
    name: 'inputFile',
    props: ['item'],
    components: {
        withLabel
    }
}
</script>
```
