mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 13:45:25 +08:00
14 lines
231 B
Vue
14 lines
231 B
Vue
<template>
|
|
<i v-if="params.data.default" class="sn-icon sn-icon-approval"></i>
|
|
<span v-else></span>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: {
|
|
params: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
}
|
|
};
|
|
</script>
|