19 lines
240 B
Vue
19 lines
240 B
Vue
<template>
|
|
<q-btn :color="color" no-caps />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'VButton',
|
|
props: {
|
|
color: {
|
|
type: String,
|
|
default: 'primary'
|
|
}
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |