3.1.6 • Published 6 months ago

@talkwed-mito/vue v3.1.6

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

@talkwed-mito/vue

⚠️ attention

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

🛠️ Install

# using npm
npm i @talkwed-mito/vue @talkwed-mito/browser
# using yarn
yarn add @talkwed-mito/vue @talkwed-mito/browser

read the mito-doc to konw more info

🥳 Usage

Vue2.X

// main.js
import Vue from 'vue'
import { init } from '@talkwed-mito/browser'
import { vuePlugin } from '@talkwed-mito/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 "@talkwed-mito/browser";
import { vuePlugin } from "@talkwed-mito/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])
3.1.6

6 months ago

3.1.5

6 months ago

3.1.4

6 months ago

3.1.3

8 months ago

3.1.2

8 months ago

3.1.1

8 months ago

3.1.0

8 months ago

3.0.3

8 months ago

3.0.2

8 months ago

3.0.1

8 months ago