prettyBytes.js 470 B

123456789101112131415161718192021222324
  1. // plugins/prettyBytes.js
  2. export default {
  3. install: (app, options) => {
  4. app.config.globalProperties.$prettyBytes = (value) => {
  5. return value + 'Mb'
  6. }
  7. app.provide('prettyBytes', options)
  8. // app.directive('my-directive', {
  9. // mounted (el, binding, vnode, oldVnode) {
  10. // // some logic ...
  11. // }
  12. // ...
  13. // })
  14. // app.mixin({
  15. // created() {
  16. // // some logic ...
  17. // }
  18. // ...
  19. // })
  20. }
  21. }