Point-of-Vue is a Vue Devtool Plugin which brings advanced state debugging tools to the native Vue Composition API. Learn more about Point-of-Vue through our Medium article.
- Displays the current state of your Vue application
- Provides a time-line of all previous states for time-travel debugging
- In-browser editing for edge-case testing
npm install point-of-vue
or
yarn add point-of-vue
// main.js
import { createApp } from 'vue'
import pointofvue from 'point-of-vue'
const app = createApp(App);
app.use(pointofvue);
If Point-of-Vue isn't showing up, click into the Components tab, then click back into Point-of-Vue tab in Devtools
Point of Vue is an open source project backed by tech incubator OSLabs and is primed for iteration. Contributions are not only welcome but highly recommended, we believe that every open source contribution makes the entire community that much better. Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
-
Expanding functionality to include state created with Pinia
-
Expanding the edit feature to include the ability to edit deeply-nested state
-
Currently the user must first visit the Inspect Components tab of the Vue devtools to be able to access state in the Point-Of-Vue tab, a future improvement could avoid this minor inconvenience, improving the UX
We have our included our eslint setup in this repo to make this as painless as possible. Please also install the VS Code Eslint extension.
Will Robson | @wrobson5467
Shelby Neuman | @shelbydneuman
Tony Lei | @tonylei00
Tristen Francis | @TristenJF