Initial commit
This commit is contained in:
19
src/components/VButton.vue
Normal file
19
src/components/VButton.vue
Normal file
@@ -0,0 +1,19 @@
|
||||
<template>
|
||||
<q-btn :color="color" no-caps />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'VButton',
|
||||
props: {
|
||||
color: {
|
||||
type: String,
|
||||
default: 'primary'
|
||||
}
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user