vue css 多行打點展示

css樣式

-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
display: -webkit-box;

生產打包問題

  • 原因:css的這個-webkit-box-orient屬性在打包的時候會丟失
  • 解決方案如下
<template lang="pug">
	.sub-notice(:style="lineStyle") {{notice.desc}}
</template>
<script>
  export default {
    computed: {
      lineStyle() {
        return {'-webkit-box-orient': 'vertical'}
      }
    }
  }
</script>
<style scoped lang="stylus">
	.sub-notice
		-webkit-line-clamp 3
	    overflow hidden
	    display -webkit-box
</style>

效果圖

效果圖

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章