You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vue-webtopo-svgeditor/src/components/svgCpt/ChargingStationSvg.vue

9 lines
262 B
Vue

5 years ago
<!-- 充电站svg组件 -->
<template>
<image :x="-height/4" :y="-height/2" :width="height/2" :height="height" xlink:href="../../assets/ChargingStationSvg.png"></image>
</template>
<script>
export default {
props: ['height','color','width'],
};
</script>