mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-07 05:03:26 +08:00
15 lines
215 B
Vue
15 lines
215 B
Vue
|
<template>
|
||
|
<a :href="params.data.urls.results" >{{ params.data.results }}</a>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'ResultsRenderer',
|
||
|
props: {
|
||
|
params: {
|
||
|
required: true
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|