New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@bachdgvn/sbox-ds

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bachdgvn/sbox-ds - npm Package Compare versions

Comparing version 0.0.1-alpha-1 to 0.0.1-alpha-2

dist/styles/fonts/Inter-Black.woff

2

package.json
{
"name": "@bachdgvn/sbox-ds",
"version": "0.0.1-alpha-1",
"version": "0.0.1-alpha-2",
"title": "Sbox Design System",

@@ -5,0 +5,0 @@ "description": "Collection of UI Components based on Sbox Design System and Vue.js 2.0",

@@ -34,23 +34,26 @@ <p align="center">

## Usage
## Quickstart
```vue
<template>
<Slider v-model="value" range />
</template>
<script>
export default {
data () {
return {
value: [20, 50]
}
}
}
</script>
```
import Vue from 'vue';
import VueRouter from 'vue-router';
import App from 'components/app.vue';
import Routers from './router.js';
import SboxDS from '@bachdgvn/sbox-ds';
import '@bachdgvn/sbox-ds/dist/styles/sbox-ds.css';
Using css via `import`:
Vue.use(VueRouter);
Vue.use(SboxDS);
```js
import 'sbox-ds/dist/styles/sbox-ds.css';
// The routing configuration
const RouterConfig = {
routes: Routers
};
const router = new VueRouter(RouterConfig);
new Vue({
el: '#app',
router: router,
render: h => h(App)
});
```

@@ -57,0 +60,0 @@

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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