mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
15 lines
207 B
Vue
15 lines
207 B
Vue
<template>
|
|
<div class="example-block">
|
|
<h2 class="demo-sub-title" v-text="title"></h2>
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
title: String
|
|
}
|
|
};
|
|
</script>
|