srplugin
v0.0.10
Published
```bash pnpm i srplugin # or npm install srplugin # or yarn add srplugin ```
Readme
srplugin
Document & Online preview
Install & Use
pnpm i srplugin
# or
npm install srplugin
# or
yarn add srpluginImport and register component
Global
import { createApp } from 'vue'
import App from './App.vue'
import {PannellumImgGallery} from 'srplugin'
const app = createApp(App)
app.use(PannellumImgGallery)Local
<script setup lang="ts">
import { PannellumImgGallery } from 'srplugin'
</script>