mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-23 15:24:57 +08:00
19 lines
321 B
Vue
19 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>
|