24 lines
263 B
Vue
24 lines
263 B
Vue
<template>
|
|
<view style="">
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name:"show-remind",
|
|
props:{
|
|
msg: {type: String, default: ""},
|
|
showType:{type:Number,default:0}
|
|
}
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style> |