Newer
Older
<template>
<div>
<div v-if="showResult">
<br /> <br />
<p> Version: {{ version }}</p>
</div>
</div>
</template>
<script>
export default {
name: "OutputSection",
props: {
version: String,
showResult: Boolean
}
};
</script>