28 lines
656 B
Vue
28 lines
656 B
Vue
<template>
|
|
<!-- <el-card style="height: 100%;background-image: url('/img/elec_flow.png');background-size: contain;background-repeat: no-repeat;"> -->
|
|
<el-card style="height: 100%;">
|
|
<img src="/media/elec_flow.png" class="flowImg" style="max-height: 100%;width:50%;object-fit:contain;" >
|
|
</el-card>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
imgSrc:''
|
|
};
|
|
},
|
|
mounted() {
|
|
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
};
|
|
</script>
|
|
<style>
|
|
.flowImg{
|
|
display: inline-block;
|
|
width: clac(100%-210px);
|
|
}
|
|
</style> |