create-nuxt-app
Version:
Create a Nuxt.js App in seconds.
23 lines (19 loc) • 495 B
JavaScript
/*
|--------------------------------------------------------------------------
| Factory
|--------------------------------------------------------------------------
|
| Factories are used to define blueprints for database tables or Lucid
| models. Later you can use these blueprints to seed your database
| with dummy data.
|
*/
// const Factory = use('Factory')
/**
Factory.blueprint('App/Models/User', (faker) => {
return {
username: faker.username()
}
})
*/