mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 18:01:24 +08:00
11 lines
144 B
Vue
11 lines
144 B
Vue
|
<template>
|
||
|
<el-image v-bind="$attrs" />
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
export default {
|
||
|
name: 'AppImg',
|
||
|
inheritAttrs: false,
|
||
|
}
|
||
|
</script>
|