admin-settings.component.js 294 Bytes
Newer Older
1 2 3 4 5
'use strict'

export default {
  name: 'admin-settings',
  data() {
6
    return {}
7 8 9 10 11 12 13 14 15 16 17 18 19
  },
  methods: {
    flushcache() {
      window.alert('Coming soon!')
    },
    resetaccounts() {
      window.alert('Coming soon!')
    },
    flushsessions() {
      window.alert('Coming soon!')
    }
  }
}