0.1.0 • Published 4 years ago

@algonaut/algo-vue-components v0.1.0

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

algo-vue-components

A set of example Vue components for building asset transactions in your web applications.

Demo

Live Demo

Usage

npm install @algonaut/algo-vue-components

Example Create Asset Form:

<template>
  <CreateAssetForm @submit="handleSubmit" />

</template>

<script>
import {
  CreateAssetForm,
} from '@algonaut/algo-vue-components';

export default {
  components: {
    CreateAssetForm,
  },
  methods: {
    handleSubmit(payload) {
      console.log(payload);
    }
  }
};
</script>

Contributing

# Install dependencies
npm install

# Compile and hot-reload for development
npm run serve

# Compile and minify for production
npm run build