Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

nuxt custom plugin

export default ({ app, store }, inject) => {
  inject("notifier", {
    showMessage({ content = "", color = "" }) {
      store.commit("snackbar/showMessage", { content, color });
    }
  });
};
Source by dev.to #
 
PREVIOUS NEXT
Tagged: #nuxt #custom #plugin
ADD COMMENT
Topic
Name
6+7 =