0.4.1 • Published 4 years ago

vue-probi-components v0.4.1

Weekly downloads
57
License
-
Repository
-
Last release
4 years ago

Vue Probi Components

Simple Vue components made for my own usage. Currently only support Vue 2.

Installation

npm install vue-probi-components

Usage

Inside a Vue SFC :

<template>
  <div class="test">
    <ProbiButton>Button</ProbiButton>
    <ProbiCard :outlined="true" :rounded="true" :width="0">
      <template v-slot:header>Card header</template>
      <template v-slot:content>Card content</template>
      <template v-slot:footer>Card footer</template>
    </ProbiCard>
    <ProbiCardHover :title="'normal'">
      <template v-slot:text>Text sample</template>
    </ProbiCardHover>
    <ProbiInput v-model="text"></ProbiInput>
    <ProbiToggle v-model="toggled" />
    <ProbiLoader />
  </div>
</template>

<script>
import {
  ProbiButton,
  ProbiCard,
  ProbiCardHover,
  ProbiInput,
  ProbiToggle,
  ProbiLoader
} from "vue-probi-components";

export default {
  ...
  components: {
    ...
    ProbiButton,
    ProbiCard,
    ProbiCardHover,
    ProbiInput,
    ProbiToggle,
    ProbiLoader
  },
  ...
}
</script>

"v-model" support

Components that are compatible with the "v-model" directive :

  • ProbiInput
  • ProbiToggle
0.4.1

4 years ago

0.4.0

4 years ago

0.3.0

5 years ago

0.2.8

5 years ago

0.2.7

5 years ago

0.2.6

5 years ago

0.2.53

5 years ago

0.2.52

5 years ago

0.2.51

5 years ago

0.2.5

5 years ago

0.2.4

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.2.3

5 years ago

0.2.2

5 years ago

0.1.0

5 years ago