<scu-vertical-navigation-item label='Accounts'></scu-vertical-navigation-item>
<scu-vertical-navigation-item label='Accounts' selected></scu-vertical-navigation-item>
| Property | Attribute | Description | Type | Default |
|---|---|---|---|---|
label |
label |
string |
"!No Label Sent!" |
|
selected |
selected |
boolean |
false |
Built with StencilJS
<scu-stack style="width: 245px;"> <scu-vertical-navigation-item label='Accounts'></scu-vertical-navigation-item> <scu-vertical-navigation-item label='Member Management' selected></scu-vertical-navigation-item> </scu-stack>
<script src="https://unpkg.com/scu-components-beta/dist/scu/scu.esm.js" type="module"></script>
<link href="https://unpkg.com/scu-components-beta/dist/scu/scu.css" rel="stylesheet">
<scu-button label='Submit' outline></scu-button>
npm install --save scu-components-beta
import Vue from 'vue'
import App from './App.vue'
import { applyPolyfills, defineCustomElements } from 'scu-components-beta/loader';
Vue.config.productionTip = false
// Tell Vue to ignore all components prefixed 'scu-'
Vue.config.ignoredElements = [/scu-\w*/];
// Bind the custom elements to the window object
applyPolyfills().then(() => {
defineCustomElements();
});
new Vue({
render: h => h(App),
}).$mount('#app')