1.1.1 • Published 7 years ago

vue-img-preview v1.1.1

Weekly downloads
48
License
-
Repository
github
Last release
7 years ago

Vue-img-preview

This is a minimal image preview implementation that does only one thing; give users feedback by showing image chosen from a file input.

looks like this (without the form)

demo

Installation

	npm install vue-img-preview --save

Import

import Vue from 'vue'
import {vueImgPreview} from 'vue-img-preview'

Vue.component('vue-img-preview', vueImgPreview)

Browser Usage

<script src="path/to/vue/vue.js"></script>
<script src="path/to/dist/vue-img-preview.js"></script>

<script>

  Vue.component('vue-img-preview', vueImgPreview)

  const vm = new Vue({
    ...
  });

</script>

Then:

<vue-img-preview

	input-name= "profile_picture"
	default-image= "https://placehold.it/350x150"
	bg-color= "#ffffff"
	text-color= "#000000"
	alt-text="profile picture"
    button-text="Choose image"
    picker-style="regular"

></vue-img-preview>

Or Just:

<vue-img-preview></vue-img-preview>

Props

NameDefaultTypeDecsription
input-namefileStringname of the file input field
default-imageStringan image to display when the component loads before the user clicks the file input
bg-color#037B38Stringbackground color of the select button
text-color#ffffffStringcolor of the select text
alt-textvue img previewStringalternative text for the image
button-textChoose an imageStringtext to show on the button
picker-styleRegularStringhow the image picker should be displayed. Button-text, text-color & bg-color won't work with this.
1.1.1

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago