欢迎来到代码驿站!

vue

当前位置:首页 > 网页前端 > vue

vue template当中style背景设置不编译问题

时间:2022-06-18 12:38:19|栏目:vue|点击:

template中style背景设置不编译

在vue定义的组件当中,直接设置行内style无法显示背景,里面使用config.resolve.alias当中设置的 @等路径符也无法识别

<el-card style="backgroundImage:`url(`图片地址`)" class="box-card" shadow="hover">

解决方法

在将图片资源在vue 的 data当中解析再绑定到页面

<el-card :style="{backgroundImage:`url(${img})`}" class="box-card" shadow="hover">
// data当中定义 组件需要在函数当中返回数据 保证数据的作用域
data: function(){
    return {
        weatherData:{},
        img: require('@assets/image/sunny_n.jpg')
    }
  },

如何给template组件加背景

<template>
  <div class="index_background" >
  </div>
</template>
<style>
.index_background{ background: url('~@/../static/images/login-bg.png') center top no-repeat;}
</style>

上一篇:vue视图不更新情况详解

栏    目:vue

下一篇:vue中的严格模式如何取消

本文标题:vue template当中style背景设置不编译问题

本文地址:http://www.codeinn.net/misctech/205140.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有