You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-csc-ui/doc/COMPONENTS.md

654 B

Reusable Vue.js Components

Layout

Page

<csc-page />

Sticky Page

<csc-page />

Sticky Tabs

<csc-page />

Forms

Text Input

The very basic text input field is the CscInput. It is a direct extension of QInput and is supposed to be the standard text input component.

<csc-input
    v-model="text"
/>

Password Input

The CscInputPassword inherits from CscInput.

<csc-input-password
    v-model="password"
/>

Password Retype

<csc-input-password-retype
    v-model="password"
/>