mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-07 20:40:26 +08:00
21 lines
359 B
Vue
21 lines
359 B
Vue
<template>
|
|
<a class="hover:no-underline flex items-center gap-1 record-info-link"
|
|
:title="params.data[0]"
|
|
:href="params.data.recordInfoUrl"
|
|
>
|
|
<span class="truncate">
|
|
{{ params.data[0] }}
|
|
</span>
|
|
</a>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
params: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
}
|
|
};
|
|
</script>
|