mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 13:45:25 +08:00
21 lines
376 B
Vue
21 lines
376 B
Vue
<template>
|
|
<a v-if="params.data.urls.show"
|
|
:href="params.data.urls.show"
|
|
:title="params.data.name">
|
|
{{ params.data.name }}
|
|
</a>
|
|
<span v-else class="text-sn-grey" :title="params.data.name">
|
|
{{ params.data.name }}
|
|
</span>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
params: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
}
|
|
};
|
|
</script>
|