vue-layout-primitives.v-stack
A component that aligns its children vertically with a specified gap between each successive child.
Installation
Directly in the browser
Drop the component in with a <script>
tag alongside Vue:
<!-- ... use component here ... -->
In a module system
Install the component with NPM:
npm install vue-layout-primitives.v-stack
Then import the component:
And either globally register it for use in all components:
Vue
or locally register it for use in an individual component:
components: VStack
Usage
<!-- No props or content are necessary. --> ...