0.5.0 • Published 7 years ago

@axolo/leovue v0.5.0

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

LeoVue

LeoVue is a Vue.js component library written by Leo.

Install

npm install @axolo/leovue --save

Import

<template>
  <div>
    <leo-dialog :visible="visible" :title="title" @close="close">
      <div class="main">{{content}}</div>
    </leo-dialog>
    <button @click="open">Dialog</button>
  </div>
</template>

<script>
import { LeoDialog } from '@axolo/leovue'
export default {
  components: { LeoDialog },
  data() { return {
    title: 'Hello',
    content: 'LeoVue',
    visible: false
  }},
  methods: {
    open()  { this.visible = true  },
    close() { this.visible = false }
  }
}
</script>
0.5.0

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago