mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
26 lines
334 B
Vue
26 lines
334 B
Vue
<template>
|
|
<span
|
|
class="van-hairline--surround"
|
|
:class="b({
|
|
mark,
|
|
plain,
|
|
[type]: type
|
|
})"
|
|
>
|
|
<slot />
|
|
</span>
|
|
</template>
|
|
|
|
<script>
|
|
import create from '../utils/create';
|
|
|
|
export default create({
|
|
name: 'tag',
|
|
props: {
|
|
type: String,
|
|
mark: Boolean,
|
|
plain: Boolean
|
|
}
|
|
});
|
|
</script>
|