mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-24 14:46:37 +00:00
28 lines
593 B
Vue
28 lines
593 B
Vue
![]() |
<template>
|
||
|
<div class="form-group">
|
||
|
<div class="col-sm-12 text-sm">
|
||
|
{{ title }}
|
||
|
</div>
|
||
|
<div class="col-sm-12">
|
||
|
<input multiple="multiple"
|
||
|
autocomplete="off"
|
||
|
:placeholder="title"
|
||
|
:title="title"
|
||
|
:name="name" type="file" class="form-control">
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "CustomAttachments",
|
||
|
props: {
|
||
|
title: String,
|
||
|
name: String
|
||
|
},
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|