├── .editorconfig ├── .eslintignore ├── .gitignore ├── .node-version ├── CHANGELOG.zh-CN.md ├── LICENSE ├── README.md ├── babel.config.js ├── example ├── App.vue └── main.js ├── package.json ├── public ├── apiPath.png ├── index.html └── logo.png ├── src ├── index.vue ├── lib │ └── live2d.min.js └── options │ └── tips.js ├── vue.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgo2017/vue-live2d/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /src/lib -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgo2017/vue-live2d/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 16.20.2 -------------------------------------------------------------------------------- /CHANGELOG.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgo2017/vue-live2d/HEAD/CHANGELOG.zh-CN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgo2017/vue-live2d/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgo2017/vue-live2d/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgo2017/vue-live2d/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgo2017/vue-live2d/HEAD/example/App.vue -------------------------------------------------------------------------------- /example/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgo2017/vue-live2d/HEAD/example/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgo2017/vue-live2d/HEAD/package.json -------------------------------------------------------------------------------- /public/apiPath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgo2017/vue-live2d/HEAD/public/apiPath.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgo2017/vue-live2d/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgo2017/vue-live2d/HEAD/public/logo.png -------------------------------------------------------------------------------- /src/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgo2017/vue-live2d/HEAD/src/index.vue -------------------------------------------------------------------------------- /src/lib/live2d.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgo2017/vue-live2d/HEAD/src/lib/live2d.min.js -------------------------------------------------------------------------------- /src/options/tips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgo2017/vue-live2d/HEAD/src/options/tips.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgo2017/vue-live2d/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgo2017/vue-live2d/HEAD/yarn.lock --------------------------------------------------------------------------------