第一次提交

This commit is contained in:
caolc
2023-02-15 09:25:11 +08:00
commit ea8e9f9eb7
202 changed files with 38601 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
<template>
<view class="van-icon">
<img :src="starUrl+iconName" class="van-icon__image">
</view>
</template>
<script>
export default {
props: {
iconName: {
type: String,
default: ''
}
},
data() {
return {
starUrl: this.global.starUrl
}
},
methods: {
}
}
</script>
<style >
.van-icon {
position: relative;
display: inline-block;
font-size: 1rem;
line-height: 1;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
}
.van-icon__image {
width: 1rem;
height: 1em;
background-size: cover;
}
</style>