<template> <div> <v-btn v-if="isVuetify" v-bind="$attrs" v-on="$listeners" > <slot></slot> </v-btn> <button v-else v-bind="$attrs" v-on="$listeners" > {{ text }} </button> </div> </template> <script> export default { props: { isVuetify: { type: Boolean, default: true }, text: String } </script>