@mitojs/vue
TypeScript icon, indicating that this package has built-in type declarations

3.0.1 • Public • Published

@mitojs/vue

⚠️ attention

If you want to import in weixin miniprograme,please replace @mitojs/browser to @miotjs/wx-mini

🛠️ Install

# using npm
npm i @mitojs/vue @mitojs/browser
# using yarn
yarn add @mitojs/vue @mitojs/browser

read the mito-doc to konw more info

🥳 Usage

Vue2.X

// main.js
import Vue from 'vue'
import { init } from '@mitojs/browser'
import { vuePlugin } from '@mitojs/vue'

// multiple instances
const MitoInstance = init({
  // set debug true to convenient debugger in dev,set false in prod
  debug:true,
  vue: Vue,
  dsn: 'https://test.com/yourInterface',
  maxBreadcrumbs: 100
},[vuePlugin])

Vue3.x

// main.ts
import { createApp } from 'vue'
import App from './App.vue'
import { init } from "@mitojs/browser";
import { vuePlugin } from "@mitojs/vue";

const app = createApp(App)
const MitoInstance = init({
  // set debug true to convenient debugger in dev,set false in prod
  debug:true,
  vue: app,
  dsn: 'https://test.com/yourInterface',
  maxBreadcrumbs: 100
},[vuePlugin])

Readme

Keywords

Package Sidebar

Install

npm i @mitojs/vue

Weekly Downloads

10

Version

3.0.1

License

MIT

Unpacked Size

80.6 kB

Total Files

10

Last publish

Collaborators

  • chenjinhuo