├── img
├── control.png
├── login.png
├── filelist.png
├── grouplist.png
├── accountset.png
└── fileupload.png
├── public
├── favicon.ico
└── index.html
├── src
├── assets
│ └── logo.png
├── main.js
├── App.vue
└── components
│ └── HelloWorld.vue
├── babel.config.js
├── .gitignore
├── README.md
└── package.json
/img/control.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pineana/Go-Fastdfs-Web/HEAD/img/control.png
--------------------------------------------------------------------------------
/img/login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pineana/Go-Fastdfs-Web/HEAD/img/login.png
--------------------------------------------------------------------------------
/img/filelist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pineana/Go-Fastdfs-Web/HEAD/img/filelist.png
--------------------------------------------------------------------------------
/img/grouplist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pineana/Go-Fastdfs-Web/HEAD/img/grouplist.png
--------------------------------------------------------------------------------
/img/accountset.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pineana/Go-Fastdfs-Web/HEAD/img/accountset.png
--------------------------------------------------------------------------------
/img/fileupload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pineana/Go-Fastdfs-Web/HEAD/img/fileupload.png
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pineana/Go-Fastdfs-Web/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/src/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pineana/Go-Fastdfs-Web/HEAD/src/assets/logo.png
--------------------------------------------------------------------------------
/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: [
3 | '@vue/cli-plugin-babel/preset'
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------
/src/main.js:
--------------------------------------------------------------------------------
1 | import { createApp } from 'vue'
2 | import App from './App.vue'
3 |
4 | createApp(App).mount('#app')
5 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 | /dist
4 |
5 |
6 | # local env files
7 | .env.local
8 | .env.*.local
9 |
10 | # Log files
11 | npm-debug.log*
12 | yarn-debug.log*
13 | yarn-error.log*
14 | pnpm-debug.log*
15 |
16 | # Editor directories and files
17 | .idea
18 | .vscode
19 | *.suo
20 | *.ntvs*
21 | *.njsproj
22 | *.sln
23 | *.sw?
24 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # go-fastdfs-ui
2 |
3 | ## Project setup
4 | ```
5 | npm install
6 | ```
7 |
8 | ### Compiles and hot-reloads for development
9 | ```
10 | npm run serve
11 | ```
12 |
13 | ### Compiles and minifies for production
14 | ```
15 | npm run build
16 | ```
17 |
18 | ### Lints and fixes files
19 | ```
20 | npm run lint
21 | ```
22 |
23 | ### Customize configuration
24 | See [Configuration Reference](https://cli.vuejs.org/config/).
25 |
--------------------------------------------------------------------------------
/src/App.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 | For a guide and recipes on how to configure / customize this project,
6 | check out the
7 | vue-cli documentation.
8 |