1.1.0 • Published 3 years ago

@aautcq/test-npm-package v1.1.0

Weekly downloads
-
License
UNLICENSED
Repository
github
Last release
3 years ago

@aautcq/test-npm-package

Install

npm i @aautcq/test-npm-package

In your Vue project, you can either register all components globally

import App from '@/App.vue';
import { createApp } from 'vue';
import aautcq from '@aautcq/test-npm-package';

const app = createApp(App);

app
  .use(aautcq)
  .mount('#app');

Or import them one at a time

<template>
  <AaBaseButton>
    Hello world
  </AaBaseButton>
</template>

<script setup>
import { AaBaseButton } from '@aautcq/test-npm-package';
</script>

Components

  • AaBaseInput: an input component
  • AaBaseButton: a button component
1.1.0

3 years ago

1.0.0

3 years ago