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>
|