@justeat/f-offers v2.3.2
f-offers
displays offers to the customers
Usage
Installation
Install the module using npm or Yarn:
yarn add @justeat/f-offersnpm install @justeat/f-offersVue Applications
You can import it in your Vue SFC like this (please note that styles have to be imported separately):
import VOffers from '@justeat/f-offers';
import '@justeat/f-offers/dist/f-offers.css';
export default {
    components: {
        VOffers
    }
}If you are using Webpack, you can import the component dynamically to separate the v-offers bundle from the main bundle.client.js:
import '@justeat/f-offers/dist/f-offers.css';
export default {
    components: {
        // …
        VOffers: () => import(/* webpackChunkName: "v-offers" */ '@justeat/f-offers')
    }
}Configuration
Props
There may be props that allow you to customise its functionality.
The props that can be defined are as follows (if any):
| Prop | Type | Default | Description | 
|---|
Events
The events that can be subscribed to are as follows (if any):
| Event | Description | 
|---|
Development
Start by cloning the repository and installing the required dependencies:
$ git clone git@github.com:justeat/fozzie-components.git
$ cd fozzie-components
$ yarnChange directory to the f-offers package:
$ cd packages/components/pages/f-offersTesting
To test all components, run from root directory.
To test only f-offers, run from the ./fozzie-components/packages/components/pages/f-offers directory.
Unit and Integration tests
yarn testComponent and Accessibility Tests
# Note: Ensure Storybook is running when running the following commands
cd ./fozzie-components
yarn storybook:build
yarn storybook:serve-staticyarn test-component:chrome
### Accessibility tests
```bash
yarn test-a11y:chromeDocumentation to be completed once module is in stable state.
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago