0.0.1-alpha.22 • Published 4 years ago

lagabu v0.0.1-alpha.22

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

Description

Lagabu is a components library based on vue@3.0.0. You can visit https://zzh97228.github.io/Lagabu/docs to see the latest documentation.

Components

  • Alert
  • App
  • Avatar
  • Btn
  • Badge
  • Card
  • Carousel
  • Chip
  • Checkbox
  • DatePicker
  • Dropdown
  • Field
  • FileInput
  • FormField
  • Slider
  • TextArea
  • TextInput
  • Grid
  • Icon(use @fontawesome-free icon)
  • List
  • Nav
  • Progress
  • TextEditor(self made WYSIWYG Editor)

Installation

npm install lagabu

# or

yarn add lagabu

Usage

// main.js

import lagabu from 'lagabu';
import { createApp } from 'vue';
import App from './App.vue';

createApp(App)
  .use(lagabu, {
    // customize theme color
    colors: {
      primary: '#f40552',
    },
  })
  .mount('#app');
<template>
  <app>
    <row>
      <row-item>
        <btn :color="state.color" @click="onClick" depressed>Button</btn>
      </row-item>
      <row-item>
        {{ state.color }}
      </row-item>
    </row>
  </app>
</template>

<script>
  // App.vue
    import { reactive } from 'vue'
    export default {
      name: 'App'
      setup() {
        const state = reactive({
          color: 'primary'
        })
        const onClick = () => {
          state.color === 'primary' ? 'success' : 'primary'
        }
        return {
          state,
          onClick
        }
      }
    }
</script>
0.0.1-alpha.22

4 years ago

0.0.1-alpha.21

4 years ago

0.0.1-alpha.20

4 years ago

0.0.1-alpha.19

4 years ago

0.0.1-alpha.18

4 years ago

0.0.1-alpha.17

4 years ago

0.0.1-alpha.16

4 years ago

0.0.1-alpha.15

4 years ago

0.0.1-alpha.14

4 years ago

0.0.1-alpha.13

4 years ago

0.0.1-alpha.12

4 years ago

0.0.1-alpha.11

4 years ago

0.0.1-alpha.10

4 years ago

0.0.1-alpha.8

4 years ago

0.0.1-alpha.9

4 years ago

0.0.1-alpha.7

4 years ago

0.0.1-alpha.6

4 years ago

0.0.1-alpha.5

4 years ago

0.0.1-alpha.4

4 years ago

0.0.1-alpha.3

4 years ago

0.0.1-alpha.1

4 years ago