0.0.5 • Published 5 years ago

solid-vue-components.logout-button v0.0.5

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

solid-vue-components.logout-button

A component that displays a solid logout button.

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/solid-vue-components.logout-button"></script>
<script>
new Vue({ el: '#app' })
</script>

In a module system

Install the component with NPM:

npm install solid-vue-components.logout-button

Then import the component:

import LogoutButton from 'solid-vue-components.logout-button'

And either globally register it for use in all components:

Vue.component(LogoutButton, 'solid-vue-components.logout-button')

or locally register it for use in an individual component:

export default {
components: { LogoutButton }
}

Usage

<!-- No props or content are necessary. -->
<LogoutButton v-on:onSuccess="handleLogout" />
0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago