jy-safe-app/components/custom/w-view-require.vue

17 lines
251 B
Vue
Raw Permalink Normal View History

2025-10-14 15:17:30 +08:00
<template>
<view style="margin: 0 0 2px 0;">
<text style="color: red; float: left;">*</text>
<view>{{title}}</view>
</view>
</template>
<script>
export default {
props: {
title: {
type: String,
default: null
}
},
}
</script>