summaryrefslogtreecommitdiff
path: root/app/src/store.js
blob: b2fe7f11621defff5bfbc4a3305521bafb63c188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { ref } from 'vue';
import { defineStore } from 'pinia';

export const useStore = defineStore('store', () => {
  const from = ref({
    server: 'localhost',
    port: 3143,
    username: 'from@example.org',
    password: 'password',
    tls: false,
  });

  const to = ref({
    server: 'localhost',
    port: 31432,
    username: 'to@example.org',
    password: 'password',
    tls: false,
  });

  return {
    from,
    to,
  };
});