1.3.0 • Published 4 years ago

vuerio v1.3.0

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

vuerio

Installation

Install vuerio package.

npm i vuerio

yarn add vuerio

Configuration

Please import the common css.

import 'vuerio/dist/vuerio.common.css'

Atomic Components

Button

import { JButton } from 'vuerio'

export default {
  components: { JButton }
}
<j-button
    text="Add"
    @handleClick=""
/>

Props

#TypeDefault
idString
textString

Input

import { JInput } from 'vuerio'

export default {
  components: { JInput }
}
<j-input
    placeholder="Please input text"
    text="Test"
    width="180px"
    @handleInput=""
/>

Props

#TypeDefault
idString
labelString
explainString
placeholderString
textString

Label

import { JLabel } from 'vuerio'

export default {
  components: { JLabel }
}
<j-label text="Vue" />

Props

#TypeDefault
textString

Select

import { JSelect } from 'vuerio'

export default {
  components: { JSelect }
}
<j-select
    :options="[{text: 0, value: 'abc'}, {text: 1, value: 'def'}, {text: 2, value: 'ghi'}]"
    :values="0"
    @handleClick=""
/>

Props

#TypeDefault
idString
labelString
explainString
optionsArray<{ value: Number, text: String }>[{ value: Number, text: String }]
valuesNumbernull
1.3.0

4 years ago

1.2.0

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago