app/assets/javascripts/plugins/alert.js

Summary

Maintainability
A
30 mins
Test Coverage
import Alert from '~/utils/alert';

export default function install(Vue) {
  Object.defineProperties(Vue.prototype, {
    $alert: {
      get() {
        return Alert;
      },
    },
  });
}