index.js 178 B

12345678910111213
  1. function dbInfo() {
  2. return {
  3. host: "localhost",
  4. port: 3306,
  5. user: "root",
  6. password: "12345678",
  7. database: "cashbook",
  8. };
  9. }
  10. export default {
  11. dbInfo,
  12. };