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

@sysvale/show

Package Overview
Dependencies
Maintainers
0
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sysvale/show

A set of components used at Sysvale

  • 1.5.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
66
decreased by-70.4%
Maintainers
0
Weekly downloads
 
Created
Source

SHOW logo

Atenção: Se deseja utilizar o SHOW em projetos com Vue 2, utilize a versão 0.3.0 ou inferior.

Instalando

  • O SHOW pode ser instalado com o npm:
$ npm i @sysvale/show;

Usando

$ npm i @sysvale/show;
  • Para usar o SHOW, importe a biblioteca no seu entry point, provavelmente vai ser seu main.js ou app.js:
import SHOW from '@sysvale/show';
  • Para usar o SHOW, importe a biblioteca no seu entry point, provavelmente vai ser seu main.js ou app.js:

  • E instale o SHOW:

Vue.use(SHOW);
  • Agora para utilizar os componentes, basta usá-los no seu template. Como exemplo, para usar a RequestProvider:
<show-request-provider
  v-slot="{ loading, failed, errorMessage, data: posts }"
  :service="getPosts"
>
  <div>
    <div v-if="loading">Carregando...</div>
    <div v-else-if="failed">{{ errorMessage }}</div>
    <div v-else>
      <div v-for="post in posts">
        <a :href="post.link">{{ post.title }}</a>
      </div>
    </div>
  </div>
</show-request-provider>

Para saber mais sobre a utilização do SHOW, consulte a Wiki.

FAQs

Package last updated on 28 Nov 2024

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