@algonaut/algo-vue-components

0.1.0 • Public • Published

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

/@algonaut/algo-vue-components/

    Package Sidebar

    Install

    npm i @algonaut/algo-vue-components

    Weekly Downloads

    0

    Version

    0.1.0

    License

    MIT

    Unpacked Size

    730 kB

    Total Files

    9

    Last publish

    Collaborators

    • jciruolo