We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c911ff commit 9fc6da4Copy full SHA for 9fc6da4
src/devtools/views/perf/FramerateGraph.vue
@@ -76,7 +76,8 @@ import FramerateMarkerInspector from './FramerateMarkerInspector.vue'
76
77
const BUBBLE_COLORS = {
78
mutations: '#FF6B00',
79
- events: '#997fff'
+ events: '#997fff',
80
+ routes: '#42B983'
81
}
82
83
// In ms
src/devtools/views/perf/module.js
@@ -65,6 +65,15 @@ export default {
65
66
}))
67
68
+ const { routeChanges } = rootState.router
69
+ addEntries('routes', routeChanges, entry => ({
70
+ label: entry.to.fullPath,
71
+ state: {
72
+ 'from': entry.from,
73
+ 'to': entry.to
74
+ }
75
+ }))
+
return markers
},
0 commit comments