mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-09 05:18:01 +08:00
15 lines
220 B
Vue
15 lines
220 B
Vue
<template>
|
|
<div v-html="params.data.sa_description"></div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'DescriptionRenderer',
|
|
props: {
|
|
params: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
}
|
|
};
|
|
</script>
|