32 lines
439 B
Vue

<template>
<button class="demo-button">
<slot />
</button>
</template>
<script>
export default {
name: 'DemoButton',
props: {
color: String,
type: {
type: String,
default: 'primary',
},
},
};
</script>
<style lang="<%= cssLang %>">
.demo-button {
min-width: 120px;
color: #fff;
font-size: 16px;
line-height: 36px;
background-color: #f44;
border: none;
border-radius: 30px;
}
</style>