The Anonymous-First Platform for Medical and Bioinformatics Data.
DeBio Ui is a collection of components (vue based) jointly developed by the DeBio team, which is intended to make it easier to develop a project without having to re-create your components repeatedly.
npm install @debionetwork/ui-components
or
yarn add @debionetwork/ui-components
bower install @debionetwork/ui-components
After installation, you can import the package into your project using this snippet:
import UiComponents from "@debionetwork/ui-components"
import "@debionetwork/ui-components/dist/debionetwork-ui-components.css"
Vue.use(UiComponents)
new Vue({
UiComponents, // <-- Put here
render: h => h(App)
}).$mount("#app")
And you can use it in all your pages or components