0.2.0-beta3 • Published 5 years ago

convext v0.2.0-beta3

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

Convext

A ContextAPI-like package for Vue.js modules and dependency injection

This package creates mixins for dependency injection in Vue js components. Other ContextAPI attempt to mimic the original functionality. This module attempts to leverage the Provide/Inject api of Vue and creates Mixins so you can quickly add reactive data to your Vue app.

To use Convext you only need to import it:

// name-convext.js
import Convext from 'convext'

export default Convext('name',{defaultValue:'Sally'});

Then to add the reactive properties you can simply add it to your components.

<!-- get-name.vue -->
<template>
  <div>
    <label for="name">Name</label>
    <input type="text" id="name" v-model="name">
    <name-display />
  </div>
</template>
<script>
  import NameConvext from "./name-convext"
  import NameDisplay from "./name-display"
  export default {
    // since this is Parent we want to Provide the data.
    mixins:[NameConvext.provideMixin()],
    components:{NameDisplay}
  }
</script>
<!-- name-display.vue -->
<template>
  <p>Hi, my name is {{ name }}</p>
</template>
<script>
  import NameConvext from "./name-convext.js"
  export default {
    // since this is a child component we want to inject the data.
    mixins:[NameConvext.injectMixin()]
  }
</script>
0.2.0-beta3

5 years ago

0.2.0-beta2

5 years ago

0.2.0-beta1

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago