advert-test
v0.0.9
Published
## Install & Use
Readme
ainvest-components
Install & Use
npm install ainvest-uiImport and register component
Global
import { createApp } from 'vue';
import App from './App.vue';
import ainvestUI from 'ainvest-ui';
import 'ainvest-ui/css';
const app = createApp(App);
app.use(ainvestUI);Local
<script setup lang="ts">
import { AdvertUsa } from 'ainvest-ui';
import 'ainvest-ui/css';
</script>