mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-17 16:35:53 +08:00
18 lines
250 B
Vue
18 lines
250 B
Vue
<template>
|
|
<img :src="text" alt=""/>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props:{
|
|
text:{
|
|
type:null,
|
|
default:''
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style> |