mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
21 lines
250 B
Vue
21 lines
250 B
Vue
<template>
|
|
<div
|
|
v-if="isDef(info)"
|
|
:class="b()"
|
|
>
|
|
{{ info }}
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import create from '../utils/create-basic';
|
|
|
|
export default create({
|
|
name: 'info',
|
|
|
|
props: {
|
|
info: [String, Number]
|
|
}
|
|
});
|
|
</script>
|