mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
18 lines
248 B
Vue
18 lines
248 B
Vue
|
<template>
|
||
|
<span>
|
||
|
<span v-html="params.data.icon_url"></span>
|
||
|
<span>{{ params.data.format }}</span>
|
||
|
</span>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
props: {
|
||
|
params: {
|
||
|
type: Object,
|
||
|
required: true
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|