@smc-gateway/test
v0.1.2
Published
For testing only.
Readme
SMC Gateway
This package is for testing, please do not use in any production projects!
Auth.vue
Provides user authenication, including login page, and provide the users data in a slot property:
Usage
<template>
<auth v-slot="auth">
<div>Hello {{ auth.user.name }}</div>
</auth>
</template>
<script>
import auth as '@smc-gateway/test'
export default {
name: 'App',
components: {
auth,
}
}
</script>
