mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-09 05:18:01 +08:00
17 lines
248 B
Vue
17 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>
|