Changeset View
Changeset View
Standalone View
Standalone View
src/resources/vue/Settings.vue
Show First 20 Lines • Show All 52 Lines • ▼ Show 20 Lines | <script> | ||||
export default { | export default { | ||||
data() { | data() { | ||||
return { | return { | ||||
config: [], | config: [], | ||||
passwordPolicy: [] | passwordPolicy: [] | ||||
} | } | ||||
}, | }, | ||||
created() { | created() { | ||||
this.wallet = this.$store.state.authInfo.wallet | this.wallet = this.$root.authInfo.wallet | ||||
}, | }, | ||||
mounted() { | mounted() { | ||||
this.$root.startLoading() | this.$root.startLoading() | ||||
axios.get('/api/v4/password-policy') | axios.get('/api/v4/password-policy') | ||||
.then(response => { | .then(response => { | ||||
this.$root.stopLoading() | this.$root.stopLoading() | ||||
▲ Show 20 Lines • Show All 54 Lines • Show Last 20 Lines |