solid-vue-components.login-button

A component that displays a solid login button.

Usage no npm install needed!

<script type="module">
  import solidVueComponentsLoginButton from 'https://cdn.skypack.dev/solid-vue-components.login-button';
</script>

README

solid-vue-components.login-button

A component that displays a solid login 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.login-button"></script>
<script>
new Vue({ el: '#app' })
</script>

In a module system

Install the component with NPM:

npm install solid-vue-components.login-button

Then import the component:

import LoginButton from 'solid-vue-components.login-button'

And either globally register it for use in all components:

Vue.component(LoginButton, 'solid-vue-components.login-button')

or locally register it for use in an individual component:

export default {
components: { LoginButton }
}

Usage

<!-- No props or content are necessary. -->
<LoginButton v-on:onSuccess="handleLogin" />