mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-24 02:16:12 +08:00
14 lines
355 B
Vue
14 lines
355 B
Vue
<template>
|
|
<demo-block title="基础用法">
|
|
<demo-button type="primary" style="margin-left: 15px">按钮</demo-button>
|
|
</demo-block>
|
|
|
|
<demo-block title="自定义颜色">
|
|
<demo-button color="#03a9f4" style="margin-left: 15px">按钮</demo-button>
|
|
</demo-block>
|
|
</template>
|
|
|
|
<script setup>
|
|
import DemoButton from '../index.vue';
|
|
</script>
|