1.0.6 ā€¢ Published 6 years ago

vue-svg-filler v1.0.6

Weekly downloads
172
License
MIT
Repository
github
Last release
6 years ago

Vue SVG Filler šŸ– šŸŽØ

Vue component for customize your svg file.

Demo Page

Documentation & Demo Page

Install

npm install vue-svg-filler --save

or

yarn add vue-svg-filler

Usage

import SvgFiller from 'vue-svg-filler'

Vue.component('svg-filler', SvgFiller)

šŸšØ Please note that !

  1. Your svg file must only contain in /static directory
  2. path must be full path e.g. static/icon.svg or /static/icon/file.svg , Can't use ../ or ./
<svg-filler path="static/PATH/OF/YOUR/FILE.svg"/>

Example directory structure

my-project
ā”œā”€ā”€ ...
ā”‚
ā”œā”€ā”€ src
ā”œā”€ā”€ static
ā”‚   ā”œā”€ā”€ icon
ā”‚   ā”‚    ā””ā”€ā”€ bitcoin.svg
ā”‚   ā”‚    ā””ā”€ā”€ palette.svg
ā”‚   ā”‚    ā””ā”€ā”€ frog.svg
ā”‚   ā”œā”€ā”€ github.svg
ā”‚   ā””ā”€ā”€ vuejs.svg
ā”‚
ā””ā”€ā”€ ...

Example

Simple usage

<svg-filler path="static/github.svg"/>

Customize fill & size

<svg-filler path="static/icon/bitcoin.svg" fill="#FF9900" width="50px" height="50px"/>

Fill & stroke

<template>
  <div>
    <svg-filler path="/static/vue-svg-filler/icon/palette.svg" class="cs-pointer" :fill="svgPalette.color" :width="svgPalette.width" :height="svgPalette.height" @click="svgPalette.color = randomColor()"/>

    <svg-filler path="/static/vue-svg-filler/icon/palette.svg" class="cs-pointer" :stroke="svgPalette.color" fill="none" :width="svgPalette.width" :height="svgPalette.height" @click="svgPalette.color = randomColor()"/>
  </div>
</template>

<script>
export default {
  data () {
    return {
      svgPalette: {
        color: this.randomColor(),
        width: '150px',
        height: '150px'
      }
    }
  },
  methods: {
    randomColor () {
      let length = 6
      let chars = '0123456789ABCDEF'
      let hex = '#'
      while (length--) hex += chars[(Math.random() * 16) | 0]
      return hex
    }
  }
}
</script>

Hover

<template>
  <div>
    <svg-filler path="/static/vuejs.svg" fill="#42b883" width="150px" height="150px":hover-color="#35495e"/>
    <div>Hover me !</div>
  </div>
</template>

Options

Props

PropsTypeDefaultDescription
pathString-Path of your svg file in /static
widthString24pxWidth
heightString24pxHeight
fillString#000Fill color
hover-colorString-Fill color when hover icon
strokeStringnoneStroke color
hover-stroke-colorString-Stroke color when hover icon

Events

NameTypeDefaultDescription
clickFunction-Triggers when click
any.nativeevent: $event-Listen to any native event, e.g. mouseover.native

Contributing

  1. Fork this repository.
  2. Create new branch with feature name.
  3. Run npm install and npm run dev.
  4. Create your feature.
  5. Commit and set commit message with feature name.
  6. Push your code to your fork repository.
  7. Create pull request. šŸ™‚

Support

If you like this project, You can support me with starring ā­ this repository.

License

MIT

Developed with ā¤ļø and ā˜•ļø

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

0.9.9

6 years ago

0.1.0

6 years ago

0.0.17

6 years ago

0.0.16

6 years ago

0.0.15

6 years ago

0.0.14

6 years ago

0.0.13

6 years ago

0.0.12

6 years ago

0.0.11

6 years ago

0.0.10

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago

1.0.0

6 years ago