notify.js 125 B

123456789101112
  1. const state = {}
  2. const mutations = {}
  3. const actions = {}
  4. export default{
  5. namespaced:true,
  6. state,
  7. mutations,
  8. actions
  9. }