0.9.2 • Published 1 year ago

@awes-io/vue-mc v0.9.2

Weekly downloads
93
License
MIT
Repository
github
Last release
1 year 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

1 year ago

0.9.0

2 years ago

0.9.1

2 years ago

0.8.0

2 years ago

0.7.0

3 years ago

0.5.0

4 years ago

0.6.0

4 years ago

0.4.0

4 years ago

0.3.3

4 years ago

0.3.1

5 years ago

0.3.0

5 years ago

0.2.9

5 years ago

0.2.8

5 years ago

0.2.7

5 years ago

0.2.6

5 years ago

0.2.5

5 years ago

0.2.4

5 years ago

0.2.3

5 years ago

0.2.2

5 years ago