0.1.22 • Published 3 years ago

@openteamsinc/scrud-component v0.1.22

Weekly downloads
17
License
-
Repository
-
Last release
3 years ago

scrud-component

Vue plugin for the ScrudComponent

Build Setup

# install dependencies
$ npm install

# serve with hot reload at localhost:8080
$ npm run serve

# build for production
$ npm run build

For more build options check the package.json scripts section

Usage

Clone this repo at the same level of the project that will be using the ScrudComponent and install it using npm:

$ npm install --save ./scrud-nuxt/scrud-component

Now your package.json should reflect the new dependency as "scrud-component": "file:../scrud-nuxt/scrud-component" and setup your project as with any other Vue plugin:

  • Create a .js at ~plugins/ something like scrud-component.js

  • The content of the file should look something like:

import Vue from 'vue'
import plugin from 'scrud-component'

Vue.use(plugin)
  • Add the plugin to nuxt.config.js:
/*
  ** Plugins to load before mounting the App
  ** https://nuxtjs.org/guide/plugins
  */
  plugins: [
    { src: '~plugins/scrud-component.js', ssr: false }
  ],

The ssr false option is needed since the scrud-component uses as HTTP Client the Caching Client which uses the Browser Cache API (i.e caches global variable).

An example use of the ScrudComponent can be seen at the dev/serve.vue file and the scrud-nuxt app).

0.1.22

3 years ago

0.1.20

3 years ago

0.1.21

3 years ago

0.1.19

3 years ago

0.1.17

3 years ago

0.1.18

3 years ago

0.1.16

3 years ago

0.1.15

3 years ago

0.1.14

3 years ago

0.1.13

3 years ago

0.1.11

3 years ago

0.1.12

3 years ago

0.1.10

3 years ago

0.1.9

3 years ago

0.1.8

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago