12 lines
176 B
Vue
12 lines
176 B
Vue
|
<template>
|
||
|
<view :class="'icon iconfont icon-'+type"></view>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'iconfont',
|
||
|
props: {
|
||
|
type: String,
|
||
|
}
|
||
|
}
|
||
|
</script>
|