Files
Smart-Farm/web/src/components/basics/lbTips.vue
2025-12-22 14:34:25 +08:00

31 lines
517 B
Vue

<template>
<div class="lb-tips">
<i class="iconfont icon-warn"></i>
<span>{{title}}</span>
</div>
</template>
<script>
export default {
props: {
title: {
type: String,
default: ''
}
}
}
</script>
<style lang="scss" scoped>
.lb-tips{
width: 100%;
background: #F4F4F4;
height: 60px;
line-height: 60px;
padding: 0 0 0 30px;
i{
color: $themeColor;
}
}
</style>