- class="divWidth">
- {{ Obj.title }}
- //data里面的obj是请求来的,title是文字字符串,就不写data的值了,本次条件是根据文字数量设置div的动态宽度
-
- <style lang="scss" scoped>
- .divWidth{
- display: inline-block; //设置行内块,内容撑开宽高
- width: auto; //默认宽
- min-width: 200px; //最小宽
- max-width: 500px; //最大宽
- }
- style>