Socket
Socket
Sign inDemoInstall

vue-faker

Package Overview
Dependencies
2
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vue-faker

Vue plugin that wraps faker.js


Version published
Maintainers
1
Install size
10.5 MB
Created

Readme

Source

vue-faker

Vue plugin that wraps the node fake data generator, [faker] (https://github.com/marak/Faker.js/).

Installation

You can install this plugin through NPM

npm install vue-faker

And then register the plugin with Vue.

Vue.use(require('vue-faker'));

Usage

You now access the faker library using the following command

Vue.faker().name.firstName()

Or from within a Vue component

this.$faker().name.firstName()
...
data() {
    return {
      name: this.$faker().name.findName(),
      email: this.$faker().internet.email(),
      company: this.$faker().company.companyName(),
    }
},
...

Locale

You can set the loacle globally by passing it through as an option to the plugin

Vue.use(require('vue-faker'), {locale: 'en_GB'});

Keywords

FAQs

Last updated on 09 Nov 2020

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc