1.0.3 • Published 3 years ago

vue-angle v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Vue Angle Picker

This is a small project to create the angle picker as I want because I couldn't find it online.

Example

Instruction

Install:

npm install vue-angle

Use:

import Vue from 'vue';
import VueAngle from 'vue-angle';
vue.use(VueAngle);

Example Code:

<template>
    <vue-angle :angle="angle" @change="onChange"></vue-angle> 
</template>
<script>
    export default{
        data() {
            angle: 0
        },
        methods:{
            onChange(angle){
                this.angle = angle;
            }
        }
    }
</script>

Browser Support

Tested on Chrome and Safari

GitHub

https://github.com/truonggiangdao/vue-angle

License

MIT

Copyright (c) 2021-present Giang Dao

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago