mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-06 20:56:42 +08:00
14 lines
215 B
Vue
14 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>
|