├── .browserslistrc ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── README.md ├── babel.config.js ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── index.html └── live2d │ ├── js │ └── jquery.min.js │ ├── message.json │ └── model │ └── rem │ ├── 11.jpg │ ├── motions │ ├── Live2D_remu01.mtn │ ├── Live2D_remu02.mtn │ ├── Live2D_remu03.mtn │ ├── Live2D_remu04.mtn │ ├── Live2D_remu05.mtn │ ├── Live2D_remu06.mtn │ ├── Live2D_remu07.mtn │ ├── Live2D_remu08.mtn │ ├── Live2D_remu09.mtn │ ├── Live2D_remu10.mtn │ ├── Live2D_remu11.mtn │ ├── Live2D_remu12.mtn │ ├── Live2D_remu13.mtn │ ├── Live2D_remu14.mtn │ ├── Live2D_remu15.mtn │ ├── Live2D_remu16.mtn │ ├── Live2D_remu17.mtn │ ├── Live2D_remu18.mtn │ ├── Live2D_remu19.mtn │ ├── Live2D_remu20.mtn │ ├── Live2D_remu21.mtn │ ├── Live2D_remu22.mtn │ ├── Live2D_remu23.mtn │ ├── Live2D_remu24.mtn │ ├── Live2D_remu25.mtn │ ├── Live2D_remu26.mtn │ ├── Live2D_remu27.mtn │ ├── Live2D_remu28.mtn │ ├── Live2D_remu29.mtn │ ├── Live2D_remu30.mtn │ ├── Live2D_remu31.mtn │ ├── Live2D_remu32.mtn │ ├── Live2D_remu33.mtn │ ├── Live2D_remu34.mtn │ └── Live2D_remu_idle.mtn │ ├── rem.json │ ├── remu.moc │ ├── remu.physics.json │ ├── remu.pose.json │ └── remu2048 │ └── texture_00.png ├── src ├── App.vue ├── assets │ └── logo.png ├── components │ ├── HelloWorld.vue │ └── Live2d.vue ├── main.js ├── router.js ├── static │ ├── images │ │ └── remu.png │ └── js │ │ ├── animate.js │ │ ├── live2d.js │ │ └── message.js ├── store.js └── views │ ├── About.vue │ └── Home.vue └── vue.config.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not ie <= 8 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/index.html -------------------------------------------------------------------------------- /public/live2d/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/js/jquery.min.js -------------------------------------------------------------------------------- /public/live2d/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/message.json -------------------------------------------------------------------------------- /public/live2d/model/rem/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/11.jpg -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu01.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu01.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu02.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu02.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu03.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu03.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu04.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu04.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu05.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu05.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu06.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu06.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu07.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu07.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu08.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu08.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu09.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu09.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu10.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu10.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu11.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu11.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu12.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu12.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu13.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu13.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu14.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu14.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu15.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu15.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu16.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu16.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu17.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu17.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu18.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu18.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu19.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu19.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu20.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu20.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu21.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu21.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu22.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu22.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu23.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu23.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu24.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu24.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu25.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu25.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu26.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu26.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu27.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu27.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu28.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu28.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu29.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu29.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu30.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu30.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu31.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu31.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu32.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu32.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu33.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu33.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu34.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu34.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/motions/Live2D_remu_idle.mtn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/motions/Live2D_remu_idle.mtn -------------------------------------------------------------------------------- /public/live2d/model/rem/rem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/rem.json -------------------------------------------------------------------------------- /public/live2d/model/rem/remu.moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/remu.moc -------------------------------------------------------------------------------- /public/live2d/model/rem/remu.physics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/remu.physics.json -------------------------------------------------------------------------------- /public/live2d/model/rem/remu.pose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/remu.pose.json -------------------------------------------------------------------------------- /public/live2d/model/rem/remu2048/texture_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/public/live2d/model/rem/remu2048/texture_00.png -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/components/Live2d.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/src/components/Live2d.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/src/router.js -------------------------------------------------------------------------------- /src/static/images/remu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/src/static/images/remu.png -------------------------------------------------------------------------------- /src/static/js/animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/src/static/js/animate.js -------------------------------------------------------------------------------- /src/static/js/live2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/src/static/js/live2d.js -------------------------------------------------------------------------------- /src/static/js/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/src/static/js/message.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/src/store.js -------------------------------------------------------------------------------- /src/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/src/views/About.vue -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/src/views/Home.vue -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIsemd/Live2d-for-Vue/HEAD/vue.config.js --------------------------------------------------------------------------------