admin-settings.component.js 294 B

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