![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
github.com/x10sv/bs-vue-timeline
This is a simple timeline build using vue
, boostrap-vue
and moment.js
package.json
and make it usable in other projects using npm
and yarn
This project was made with:
Project | Status | Documentation |
---|---|---|
vue | https://vuejs.org/ | |
bootstrap-vue | https://bootstrap-vue.js.org/ | |
moment | https://momentjs.com/ |
You could check Demo in a codesandbox.
This is not yet implemented!
npm install vue-bootstrap-timeline --save
or
yarn add vue-bootstrap-timeline
In your .vue
component:
<script>
import Timeline from 'vue-bootstrap-timeline'
export default {
// ...
components: {
Timeline
}
// ...
data: () => ({
timelineItems: [
{
from: new Date(2014,10),
to: new Date(),
title: 'Company Name 1',
subtitle: 'System Engineer',
content: 'lorem ipsum dolor sin amet',
image: 'company1-logo.png'
},
{
from: new Date(2009,5),
to: new Date(2013,5),
title: 'Company Name 2',
subtitle: 'Programmer',
content: 'lorem ipsum dolor sin amet',
image: 'company2-logo.png'
},
{
from: new Date(2000,3),
to: new Date(2008,12),
title: 'Company Name 3',
subtitle: 'Internship / Volunteer',
content: 'lorem ipsum dolor sin amet',
image: 'company3-logo.png'
},
]
})
};
</script>
then, in your <template>
:
<Timeline :timeline-items="timelineItems"/>
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to test changes appropriately.
Copyright (c) 2019-present, Angelin Calu
FAQs
Unknown package
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.