├── .gitignore ├── README.md ├── meta.json └── template ├── .gitignore ├── README.md ├── functions.php ├── functions ├── vue_in_editor.php └── webpack_enqueue.php ├── index.php ├── screenshot.png ├── src ├── .babelrc ├── cd.command ├── components │ └── App.vue ├── index.html ├── main.js ├── npm-run-build.command ├── npm-run-dev.command ├── package.json ├── static │ └── logo.png └── webpack.config.js └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | test/ 2 | Icon 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/README.md -------------------------------------------------------------------------------- /meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/meta.json -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/template/README.md -------------------------------------------------------------------------------- /template/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/template/functions.php -------------------------------------------------------------------------------- /template/functions/vue_in_editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/template/functions/vue_in_editor.php -------------------------------------------------------------------------------- /template/functions/webpack_enqueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/template/functions/webpack_enqueue.php -------------------------------------------------------------------------------- /template/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/template/index.php -------------------------------------------------------------------------------- /template/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/template/screenshot.png -------------------------------------------------------------------------------- /template/src/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/template/src/.babelrc -------------------------------------------------------------------------------- /template/src/cd.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/template/src/cd.command -------------------------------------------------------------------------------- /template/src/components/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/template/src/components/App.vue -------------------------------------------------------------------------------- /template/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/template/src/index.html -------------------------------------------------------------------------------- /template/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/template/src/main.js -------------------------------------------------------------------------------- /template/src/npm-run-build.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/template/src/npm-run-build.command -------------------------------------------------------------------------------- /template/src/npm-run-dev.command: -------------------------------------------------------------------------------- 1 | cd -- "$(dirname "$BASH_SOURCE")" 2 | npm run dev -------------------------------------------------------------------------------- /template/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/template/src/package.json -------------------------------------------------------------------------------- /template/src/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/template/src/static/logo.png -------------------------------------------------------------------------------- /template/src/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/template/src/webpack.config.js -------------------------------------------------------------------------------- /template/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shshaw/vue-webpack-wordpress/HEAD/template/style.css --------------------------------------------------------------------------------