ultrawidify/src/popup/panels/PerformancePanel.vue

27 lines
293 B
Vue
Raw Normal View History

2019-02-16 01:19:29 +01:00
<template>
<div>
PERFORMANCE PANEL :: This is here for debugging purposes.
<pre>{{performance}}</pre>
</div>
</template>
<script>
export default {
props: {
performance: Object,
},
watch: {
performance: {
deep: true,
}
}
}
</script>
<style>
</style>