Create modals, sidebars, notifications, pop ups with css transitions!
npm install vue-over-body
npm install --save vue-over-body
`Usage
`javascript
import Vue from 'vue'
import overBody from 'vue-over-body' new Vue({
components: {
'vue-over-body': overBody
},
data: function () {
return {
open: 1
}
}
}).$mount('#app')
``html
A little alert message!
For the users of your app!
``css
.before {
top: 50px;
right: -300px;
width: 300px;
background-color:yellow;
position:absolute;
} .after {
right: 50px;
}
``What is outside of the scope of this project:
- Create any kind of layout like buttons, headers, pre build alerts!