Giter Club home page Giter Club logo

vue-expand-ball's Introduction

vue-expand-ball

NPM version

A damn easy expandable menu without any extra dependency for vue.

Read full documentation here: documentation

Getting started

This is a component requires vue ^2.1.10. And ease the way to display a draggable menu item on your page.

Requirements

Install

from npm

npm install --save vue vue-expand-ball

from bower

bower install --save vue vue-expand-ball

Import

ES2015

import {VueExpandBall} from 'vue-expand-ball';

CommonJS

const {VueExpandBall} = require('vue-expand-ball');

script

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>DEMO</title>
</head>
<body>

    <script type="text/javascript" src="node_modules/vue/dist/vue.min.js"></script>
    <script type="text/javascript" src="node_modules/vue-expand-ball/dist/vue-expand-ball.min.js"></script>
    <script type="text/javascript">
        var VueExpandBall = window.VueExpandBall;
    </script>
</body>
</html>

Basic Usage

.ball-pos {
    bottom: 200px;
    right: 200px;
}
<expand-ball class="ball-pos">
    <span slot="menu" @click="clicked('M1')">M1</span>
    <span slot="menu" @click="clicked('M2')">M2</span>
</expand-ball>
export default {
    methods: {
        clicked(str) {
            alert(str + ' is just clicked!!');
        }
    }
};

LICENSE

GPL v3 License

vue-expand-ball's People

Contributors

leftstick avatar

Watchers

athiwatp avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.