├── .browserslistrc ├── .eslintrc.js ├── .gitignore ├── README.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── access.ts ├── api │ └── user.ts ├── assets │ └── logo.png ├── components │ ├── GlobalHeader.vue │ └── HelloWorld.vue ├── layouts │ └── BasicLayout.vue ├── main.ts ├── pages │ ├── HomePage.vue │ ├── admin │ │ └── UserManagePage.vue │ └── user │ │ ├── UserLoginPage.vue │ │ └── UserRegisterPage.vue ├── request.ts ├── router │ └── index.ts ├── shims-vue.d.ts ├── store │ └── useLoginUserStore.ts └── views │ ├── AboutView.vue │ └── HomeView.vue ├── tsconfig.json └── vue.config.js /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/access.ts -------------------------------------------------------------------------------- /src/api/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/api/user.ts -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/GlobalHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/components/GlobalHeader.vue -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/layouts/BasicLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/layouts/BasicLayout.vue -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/pages/HomePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/pages/HomePage.vue -------------------------------------------------------------------------------- /src/pages/admin/UserManagePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/pages/admin/UserManagePage.vue -------------------------------------------------------------------------------- /src/pages/user/UserLoginPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/pages/user/UserLoginPage.vue -------------------------------------------------------------------------------- /src/pages/user/UserRegisterPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/pages/user/UserRegisterPage.vue -------------------------------------------------------------------------------- /src/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/request.ts -------------------------------------------------------------------------------- /src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/router/index.ts -------------------------------------------------------------------------------- /src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/shims-vue.d.ts -------------------------------------------------------------------------------- /src/store/useLoginUserStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/store/useLoginUserStore.ts -------------------------------------------------------------------------------- /src/views/AboutView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/views/AboutView.vue -------------------------------------------------------------------------------- /src/views/HomeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/src/views/HomeView.vue -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyupi/user-center-frontend-vue/HEAD/vue.config.js --------------------------------------------------------------------------------