dbrekalo / vue-date-pick

Lightweight and mobile friendly date time picker based on Vue. Vue date pick emphasizes performance, elegant and usable UI on all screen sizes and simplicity of configuration. Has no dependencies on css frameworks or date libraries. Weighs less then 5KB.
https://dbrekalo.github.io/vue-date-pick/
MIT License
251 stars 84 forks source link

Support Calendar Icon in Input #74

Open ghost opened 3 years ago

ghost commented 3 years ago

Having an option to display fa fa-calendar for example alongside the placeholder text would be nice.

ivanishko commented 3 years ago

There is not decision in my answer, but I use image after component with "position: absolute":

<style lang="sass" scoped> 
...
        .datepick
            position: relative

            img.icon
                position: absolute
                right: 30px
                top: 35px
...