ultrawidify/src/popup/panels/PerformancePanel.vue
2019-02-16 01:19:29 +01:00

27 lines
293 B
Vue

<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>