Open zerescas opened 4 months ago
The config vite.config.js meets with the installation guide
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueDevTools from 'vite-plugin-vue-devtools'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
vueDevTools(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})
Thanks for the feedback. In the new version, we merged the Timeline feature into the feature panel (e.g. pinia, vue-router). But we haven't updated the documentation, We'll update it to avoid confusion.
This seems to work for seeing timeline events for the router and store specifically, but where would one go to find timeline events for component events? This is where I found the timeline most useful, in order to see if an emit was actually sent correctly. Now it seems like this functionality has been removed and only router/store events are shown in timeline.
This seems to work for seeing timeline events for the router and store specifically, but where would one go to find timeline events for component events? This is where I found the timeline most useful, in order to see if an emit was actually sent correctly. Now it seems like this functionality has been removed and only router/store events are shown in timeline.
The reason we removed the component events timeline in the new version of devtools is that we found it to have serious performance issues and possible memory leaks.
Describe the bug
There is no the Timeline tab in the devtools panel, that mentioned on the official site
Expected behavior
The Timeline tab that exists in the devtools panel
How to reproduce
Steps to reproduce the behavior:
Create a new Vue project with create-vue with these parameters:
Install dependencies with -
npm install
Launch the project with -
npm run dev
No any trace of the Timeline tab: