0.1.0 • Published 6 years ago

@danieldx/nc-tmta-widget v0.1.0

Weekly downloads
-
License
-
Repository
github
Last release
6 years ago

nc-tmta-widget

nc-tmta-widget widget for ncform

Install and basic usage

npm i -s @danieldx/nc-tmta-widget

Add the widget

import ncTmtaWidget from '@danieldx/nc-tmta-widget';

Vue.use(vueNcform, { extComponents: {ncTmtaWidget} });

// or vm.$ncformAddWidget({name: 'ncTmtaWidget', widget: ncTmtaWidget});

Use the widget

{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "widget": "nc-tmta-widget",
      "widgetConfig": {
      }
    }
  }
}

Project setup

npm install

Compiles and hot-reloads for development

npm run serve

You only need to care about src/components/index.vue

Compiles and minifies for production

npm run build

Run your tests

npm run test

Lints and fixes files

npm run lint

Run your end-to-end tests

npm run test:e2e

Run your unit tests

npm run test:unit