-
Notifications
You must be signed in to change notification settings - Fork 6
UI Components
Jang Haemin edited this page Aug 1, 2019
·
30 revisions
eodiro UI Components is a set of reusable Vue components to be used instead of original HTML tags. It gives you much faster, unified and flexible development experience.
<template>
<eodiro-button>Click Me</eodiro-button>
</template>
import { EodiroButton } from '~/components/ui'
export default {
components: { EodiroButton }
}
@click
<template>
<eodiro-input v-model="value" />
</template>
import { EodiroInput } from '~/components/ui'
export default {
components: { EodiroInput },
data() {
value: ''
}
}
@keydown
@keyup
@keypress
<template>
<eodiro-textarea v-model="content" />
</template>
import { EodiroTextarea } from '~/components/ui'
export default {
components: { EodiroTextarea },
data() {
content: ''
}
}
@keydown
@keyup
@keypress
Copyright ©️ 2019 PAYW.org | Contact
Documentation
Components