Vue

Vue动态绑定style 样式

2019-11-13  本文已影响0人  西瓜鱼仔
<template>
  <div>
    <div :style="mark" ></div>
  </div>
</template>

<script>
export default {
    data() {
        return{
              mark: {
              height:'70px',
              width:'70px',
              background:"url("+ require('../../assets/images/xxx.png') +") no-repeat center",
              position:'absolute',
              top:'498px',
              left:'155px',
              }
            }
}
</script>

需要注意的是:background 的url 要用require引入。

上一篇 下一篇

猜你喜欢

热点阅读