mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
22 lines
376 B
Vue
22 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>
|