mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
32 lines
439 B
Vue
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>
|