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

@justeat/f-content-cards

Package Overview
Dependencies
Maintainers
34
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@justeat/f-content-cards

Fozzie Content Cards

  • 0.7.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
102
increased by827.27%
Maintainers
34
Weekly downloads
 
Created
Source

f-content-cards

Fozzie Bear

Content cards component


npm version CircleCI Coverage Status Known Vulnerabilities

Usage

  1. Install the module using NPM or Yarn:

    yarn add @justeat/f-content-cards
    
    npm install @justeat/f-content-cards
    
  2. Import the component

    You can import it in your Vue SFC like this (please note that styles have to be imported separately):

    import ContentCards from '@justeat/f-content-cards';
    import '@justeat/f-content-cards/dist/f-content-cards.css';
    
    export default {
        components: {
            ContentCards
        }
    }
    

    If you are using Webpack, you can import the component dynamically to separate the header bundle from the main bundle.client.js:

    import '@justeat/f-content-cards/dist/f-content-cards.css';
    
    export default {
        components: {
            ...
            ContentCards: () => import(/* webpackChunkName: "f-content-cards" */ '@justeat/f-content-cards')
        }
    }
    
    

Development

Running below yarn commands from the component folder, starts a development server displaying a preview example of the component implementation.

# cd /packages/f-content-cards
yarn install

# followed by
yarn demo

Documentation to be completed once module is in stable state.

Keywords

FAQs

Package last updated on 25 Jun 2020

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