admin-settings.component.js 280 B

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