1.0.0 • Published 5 years ago

vue-simple-di v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

vue-js-di

Vuejs plugin for https://github.com/pilov-pa/js-di

Usage

// services.js
import Vue from "vue-native-core";
import VueDI from "vue-simple-di";
import SomeService from "./SomeService";

Vue.use(VueDI);
Vue.$di.add("someService", SomeService);
//component.js
<template>
    <!-- ... -->
</template>

<script>
export default {
  // ...
  inject: ["someService"],
  methods: {
    someMethod() {
        const someData = this.someService.getSomeData();
    },
  }
}
</script>
1.0.0

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago