Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vue-ms-forms-plugin

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-ms-forms-plugin

MP componentes par interactuar con ms-forms setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.

  • 0.1.0
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Vue 3 + Vite + Primevue

MP componentes par interactuar con ms-forms setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.

How to use

1.- Install component

$ npm i vue3-draggable
$ npm i vue-ms-forms-plugin

2.- In main.js file

import Draggable from "vue3-draggable";
import MsFormsPugin from 'vue-ms-forms-plugin';
import 'vue-ms-forms-plugin/dist/style.css';
...
app.component('Draggable', Draggable);
app.use(MsFormsPugin, {
  useServices: true, // si su proyecto ya usa primevue [false]
  usePrimeVue: true, // si su proyecto ya usa primevue [false]
  useDirectives: true, // si su proyecto ya usa primevue [false]
});

Components

  1. ManageForm
<ManageForm
  ref="formRef"
  :back-url="backUrl"
  app-tag="test-app"
  token="sometoken"
  :form-type="tipoFormulario"
  show-response-json
>
  <template #options="{ loading, isSmall }">
    <Button
      class="p-button-help p-button-outlined"
      :loading="loading"
      icon="pi pi-printer"
      :label="isSmall ? undefined : 'Struct'"
      @click="onGetResultStructure"
    />
  </template>
</ManageForm>
  1. ResponseForm
<ResponseForm
  :form-type="tipoFormulario"
  :answered-by="{ funcId: 66, ci: '10529939', nombreCompleto: 'Erwin Ramiro Flores Marca' }"
  :back-url="backUrl"
  :no-save="false"
  token="sometoken"
  buttons-position="bottom"
  :columns="1"
/>

FAQs

Package last updated on 28 Sep 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc