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

@justeat/f-footer

Package Overview
Dependencies
Maintainers
34
Versions
216
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@justeat/f-footer

f-footer

  • 3.3.3-1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-99.1%
Maintainers
34
Weekly downloads
 
Created
Source
Fozzie Bear

Global Footer Component for Vue.js.


npm version CircleCI Coverage Status Known Vulnerabilities


  1. Add the module to your project

    yarn add @justeat/f-footer
    
  2. Import the component

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

    import VueFooter from '@justeat/f-footer';
    import '@justeat/f-footer/dist/f-footer.css';
    
    export default {
        components: {
            VueFooter
        }
    }
    

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

    import '@justeat/f-footer/dist/f-footer.css';
    
    export default {
        components: {
            ...
            VueFooter: () => import(/* webpackChunkName: "vue-footer" */ '@justeat/f-footer')
        }
    }
    
    
    • If there is a vue-i18n plugin in the project, footer component can be called without any props:

    <vue-footer />

    • Or you can pass locale as a property to specify the tenant:

    <vue-footer locale="en-GB" />

  3. Browser Support

    This component extends @justeat/browserslist-config-fozzie.

  4. Building the Module

    Run yarn build.

  5. Running locally

    Run yarn demo in /packages/f-footer to render testing wrapper component

  6. Running the Tests

    Run yarn test.

  7. Running Lint check

    Run yarn lint.

Keywords

FAQs

Package last updated on 16 Jul 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