cellsysArt/components/icon/SvgIcon.vue

44 lines
1.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<svg v-if="icon && icon.data" class="svg-icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path :d="icon.data" :fill="icon.fillColor ? icon.fillColor : '#000000'" :opacity="icon.fillOpacity" :transform="`rotate(${rotateConver(icon.rotate)})`"
transform-origin="center center"></path>
</svg>
</template>
<script>
export default {
name: 'SvgIcon',
props: {
icon: {
type: Object,
default: {}
}
},
data() {
return {}
},
methods: {
// 角度转换
rotateConver: function(rotate) {
//1-0°2-45°右下3-90°4-135°左下5-180°6-225°7-270°左上8-315°右上
return (rotate === undefined || rotate === null) ? 0 : (Number(rotate) * 45)
}
}
}
</script>
<style scoped>
svg:not(:root) {
overflow: hidden;
}
.svg-icon {
width: 1em;
height: 1em;
vertical-align: middle;
fill: currentColor;
overflow: hidden;
font-size: 30px;
}
</style>