@tassyo.monteiro/view-model-api
v2.4.2
Published
![](https://img.shields.io/npm/v/@lumkani/view-model-api) ![](https://img.shields.io/npm/dw/@lumkani/view-model-api) ![](https://img.shields.io/github/issues/Lumkani/vue-view-model-api)
Downloads
34
Readme
View Model API
Summary
An additive way of writing Vue components with dependency injection
Installation
$ yarn add @muralis/view-model-api
import Vue from 'vue'
import { ViewModelPlugin } from '@tassyo.monteiro/view-model-api'
Vue.use(ViewModelPlugin)
Basic Example
Class-based Syntax
class TextViewModel {
static data = () => ({
text: null
})
static mounted = async (vm) => {
const textData = await someAPI()
vm.text = textData
}
}
export { TextViewModel }
Object-literal syntax
const TextViewModel = {
data: () => ({
text: null,
}),
mounted: async (vm) => {
const textData = await someAPI()
vm.text = textData
}
}
export { TextViewModel }
<template>
<p>{{ text }}</p>
</template>
<script>
import { TextViewModel as ViewModel } from './model'
export default { ViewModel }
</script>
Motivation
Here at Lumkani, we love Vue as Vue is such an approachable frontend library or framework in some cases, but we found that if you want to test logic in a component you would need to mount the component just to test the logic and so with the ViewModel API, you can now write your logic without putting your JS in a Vue component
The benefits for the team: (This is a fork, because Lumkani droped the project, its temporary solution)
- A solid structure
- Easier to test
- Quicker to debug
- Code reviews become easier