mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-12 04:06:37 +08:00
23 lines
279 B
Vue
23 lines
279 B
Vue
<template>
|
|
<v-btn
|
|
:color="color"
|
|
v-bind="$attrs"
|
|
v-on="$listeners"
|
|
>
|
|
<slot />
|
|
</v-btn>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'AppBtn',
|
|
|
|
props: {
|
|
color: {
|
|
type: String,
|
|
default: 'primary',
|
|
},
|
|
},
|
|
}
|
|
</script>
|