mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 06:06:56 +08:00
20 lines
321 B
Vue
20 lines
321 B
Vue
|
<template>
|
||
|
<div class="result-wrapper">
|
||
|
{{ result.id }}
|
||
|
{{ result.attributes.name }}
|
||
|
<hr>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import Result from './result.vue';
|
||
|
|
||
|
export default {
|
||
|
name: 'Results',
|
||
|
components: { Result },
|
||
|
props: {
|
||
|
result: { type: Object, required: true }
|
||
|
}
|
||
|
}
|
||
|
</script>
|