1.0.7-alpha.0 • Published 5 years ago

@esserun/admin-ui.container v1.0.7-alpha.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

admin-ui.container

Container ui

Installation

Directly in the browser

Drop the component in with a <script> tag alongside Vue:

<div id="app">
<!-- ... use component here ... -->
</div>

<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/admin-ui.container"></script>
<script>
new Vue({ el: '#app' })
</script>

In a module system

Install the component with NPM:

npm install admin-ui.container

Then import the component:

import Container from '@esserun/admin-ui.container'

And either globally register it for use in all components:

Vue.component(Container, 'container')

or locally register it for use in an individual component:

export default {
components: { Container }
}

Usage

<container></container>