Initial commit

This commit is contained in:
kandrusyak
2023-01-15 22:39:37 +03:00
parent 1d6c521ed6
commit 58c8fe59ef
40 changed files with 649 additions and 71 deletions

View 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>