0.9.2 • Published 19 days ago

@awes-io/vue-mc v0.9.2

Weekly downloads
93
License
MIT
Repository
github
Last release
19 days ago

Awes.io Models and Collections Abstract Layer

Based on VueMC

Basic usage

  1. Ensure you are using @nuxtjs/axios in your project
  2. Install the module yarn add @awes-io/vue-mc
  3. Now you are ready to build models and collections
  4. Import your BaseModel and BaseCollection from this package
import { BaseModel, BaseCollection } from '@awes-io/vue-mc'

class Todo extends BaseModel {
    defaults() {
        return {
            id: null,
            done: true
        }
    }
}

class Todos extends BaseCollection {
    model() {
        return Todo
    }
}

export default Todos

Build before release a new version

$ yarn build

Ensure to write proper commit message according to Git Commit convention

0.9.2

19 days ago

0.9.0

6 months ago

0.9.1

6 months ago

0.8.0

9 months ago

0.7.0

2 years ago

0.5.0

3 years ago

0.6.0

3 years ago

0.4.0

3 years ago

0.3.3

3 years ago

0.3.1

3 years ago

0.3.0

4 years ago

0.2.9

4 years ago

0.2.8

4 years ago

0.2.7

4 years ago

0.2.6

4 years ago

0.2.5

4 years ago

0.2.4

4 years ago

0.2.3

4 years ago

0.2.2

4 years ago