17 lines
304 B
JavaScript
17 lines
304 B
JavaScript
|
|
import { reactive } from 'vue';
|
|
|
|
export const settingsStore = reactive({
|
|
countries: "",
|
|
country: "",
|
|
field: "",
|
|
online: false,
|
|
text: "",
|
|
currency: "EUR",
|
|
online: false,
|
|
ccountry_filter: [["Country"]],
|
|
ccountry_list: [],
|
|
currencyCoef: 1.0,
|
|
settings: {},
|
|
});
|