# sqlquery **Repository Path**: yuan-zhanyi/sqlquery ## Basic Information - **Project Name**: sqlquery - **Description**: sqlquery demo - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-07-15 - **Last Updated**: 2023-07-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # sql-query ## Project setup ``` yarn install ``` ### Compiles and hot-reloads for development ``` yarn serve ``` ### Compiles and minifies for production ``` yarn build ``` ``` sql-query ├─ .env.development ├─ .env.production ├─ .gitignore ├─ babel.config.js ├─ jsconfig.json ├─ package.json ├─ public │ ├─ favicon.ico │ └─ index.html ├─ README.md ├─ src │ ├─ api │ │ ├─ index.js │ │ └─ test.api.js │ ├─ App.vue │ ├─ assets │ │ └─ logo.png │ ├─ components │ │ ├─ Ace.vue │ │ ├─ Aside.vue │ │ └─ Layout.vue │ ├─ main.js │ ├─ pages │ │ ├─ sqlQuery │ │ │ ├─ components │ │ │ │ ├─ errorPage.vue │ │ │ │ ├─ LeftTree.vue │ │ │ │ └─ resultPage.vue │ │ │ └─ SqlQuery.vue │ │ └─ testPage │ │ └─ test.vue │ ├─ plugins │ │ └─ element.js │ ├─ request │ │ ├─ config.js │ │ └─ request.js │ ├─ router │ │ └─ index.js │ ├─ store │ │ └─ index.js │ ├─ utils │ │ └─ utils.js │ └─ views ├─ vue.config.js └─ yarn.lock ```