@1010data/components-button
v1.0.20
Published
1010Data button component
Readme
@1010data/components-button
Simple Button component.
Main props that can be passed through
- appendIcon: Optional, mdi icon path for an append icon
- prependIcon: Optional, mdi icon path for a prepend icon
- title: Optional, title for the button
- type: Optional, default is Normal. Available types are "normal", "primary", and "alternative"
All props available in these api docs are available as options https://vuetifyjs.com/en/api/v-btn/ Events available are also listed in these api docs
Usage
<template>
<Button
icon="mdi-play"
title="Play"
type="primary"
depressed
/>
</template>
<script>
import { Button } from '@1010data/components'
export default {
components: { Button }
}
</script>