Found 22 repositories(showing 22)
SimulatedGREG
An Electron & Vue.js quick start boilerplate with vue-cli scaffolding, common Vue plugins, electron-packager/electron-builder, unit/e2e testing, vue-devtools, and webpack.
webfansplz
Vite + Vue DevTools = DX 🔥
Zippowxk
Vue-devtools Plugin For vConsole & Eruda ( vConsole & Eruda 的 Vue-devtools 插件 )
kdydesign
An Electron & Vue.js quick start boilerplate with vue-cli scaffolding, common Vue plugins, electron-packager/electron-builder, unit/e2e testing, vue-devtools, and webpack, Quasar1.x/Vuetify2.x Sass/Less/Stylus.
nativescript-vue
A NativeScript-Vue plugin for connecting to the standalone vue-devtools
No description available
logux
Vue devtools plugin for debugging Logux applications
No description available
vite-plugin-vue-devtools-chinese
vue-dev-tools-accessibility
Accessibility plugin for Vite Vue-DevTools
davestewart
Webpack plugin to open and connect to external Vue Devtools
molunhui
An Electron & Vue.js quick start boilerplate with vue-cli scaffolding, common Vue plugins, electron-packager/electron-builder, unit/e2e testing, vue-devtools, typescript and webpack.
ltlwill
vue devtools 浏览器插件
westberliner
An inertiajs vue plugin for vuejs devtools
jely2002
Vue Devtools integration for Tauri apps
hangboss1761
A Vue Devtools plugin to count the number of elements in Vue Components
xxholly32
No description available
Kasheftin
No description available
hm20062006ok
An Vue-cli plugin for open third devtools for uni-app cli project.
pekonchan
The plugin for vue-devtools to modify the open-in-editor url
elazarusblackmon
An Electron & Vue.js quick start boilerplate with vue-cli scaffolding, common Vue plugins, electron-packager/electron-builder, unit/e2e testing, vue-devtools, and webpack.
Bobypaliya1
/*! * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ const { CleanWebpackPlugin } = require("clean-webpack-plugin"); const HtmlWebpackPlugin = require("html-webpack-plugin"); module.exports = env => { const htmlTemplate = "./src/index.html"; const plugins = env && env.clean ? [new CleanWebpackPlugin(), new HtmlWebpackPlugin({ template: htmlTemplate })] : [new HtmlWebpackPlugin({ template: htmlTemplate })]; const mode = env && env.prod ? "production" : "development"; return { devtool: "inline-source-map", entry: { app: "./src/app.js", }, mode, output: { filename: "[name].[contenthash].js", }, module: { rules: [ { test: /\.jsx/, exclude: /(node_modules)/, use: { loader: "babel-loader", options: { presets: ["@babel/preset-env", "@babel/preset-react"] } } } ] }, plugins, resolve: { extensions: [".jsx", ".js"], alias: { vue$: "vue/dist/vue.esm-bundler.js", }, }, devServer: { open: true } }; }; Footer © 2022 GitHub, Inc. Footer navigation Terms
All 22 repositories loaded