progress on fancy list and info popup

This commit is contained in:
Seth Ladygo
2019-04-03 12:27:46 -07:00
parent 72ffbfe7a6
commit 7ebaaad89d
5 changed files with 218 additions and 32 deletions

View File

@ -0,0 +1,36 @@
<template>
<v-card>
<v-toolbar color="purple" dark>
<v-toolbar-title>{{ title }}</v-toolbar-title>
</v-toolbar>
<pre>{{ valueString }}</pre>
</v-card>
</template>
<script>
const props = {
name: 'RawDisplayer',
title: {
required: true,
type: String
},
value: {
required: true
}
};
export default {
props,
computed: {
valueString() {
return JSON.stringify(this.value, null, 2);
}
}
};
</script>
<style scoped>
pre {
text-align: start;
}
</style>