17 lines
251 B
Vue
17 lines
251 B
Vue
<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> |