mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-09 21:36:44 +08:00
16 lines
235 B
Vue
16 lines
235 B
Vue
<template>
|
|
<a :href="params.data.urls.show" :title="params.data.name">
|
|
{{ params.data.name }}
|
|
</a>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
params: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
}
|
|
};
|
|
</script>
|