Socket
Socket
Sign inDemoInstall

@160over90/vue-form-fetch

Package Overview
Dependencies
Maintainers
5
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@160over90/vue-form-fetch

Allows you to use the HTTP methods to send or get data gathered from any number of form fields.


Version published
Weekly downloads
2
decreased by-33.33%
Maintainers
5
Weekly downloads
 
Created
Source

FormFetch

Features

Allows you to use the HTTP methods GET and POST to send or get data gathered from any number of form fields.

If you do not have yarn you can download it here.

Instructions for global registration

yarn add @160over90/vue-form-fetch

Include in main.js (app entry point)

import FormFetch from '@160over90/vue-form-fetch';

Vue.use(FormFetch);

Instructions for editing this package

yarn install

Compiles and hot-reloads for development

yarn run serve

Attributes

method the method attribute excepts the "GET" or "POST" HTTP methods.

action the action attribute excepts your API endpoint or path to PHP middleware.

Example

<FormFetch
  method="POST"
  action="/submit-form.php"
>
  <template slot-scope="{ state, response }">
    <div>
      <label>
        <div>First Name</div>
        <input name="firstName">
      </label>
    </div>
    <div>
      <label>
        <div>Last Name</div>
        <input name="lastName">
      </label>
      </div>
      <button v-text="'Submit'"/>
      <p v-if="state === 'pending'>
        Submitting your request...
      </p>
      <p v-else-if="state === 'rejected'">
        Sorry, that didn't work!
      </p>
      <p v-else-if="state === 'fulfilled'">
        {{ response.ok
          ? "You're good to go!"
          : "Sorry, that didn't work!"
        }}
      </p>
  </template>
</FormFetch>

Props

init (Object, Default: null) Allows you to pass a configuration object.

Example

<FormFetch
  method="POST"
  action="/submit-form.php"
  :init="{
    mode: 'cors',
    cache: 'no-cache',
  }"
>
...

For request properties, refer to: https://developer.mozilla.org/en-US/docs/Web/API/Request.

License

MIT

FAQs

Package last updated on 03 Dec 2018

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