https://github.com/justforuse/vue-mathjax-next
Vue3 + Mathjax plugin
https://github.com/justforuse/vue-mathjax-next
mathjax vue vue3
Last synced: 11 months ago
JSON representation
Vue3 + Mathjax plugin
- Host: GitHub
- URL: https://github.com/justforuse/vue-mathjax-next
- Owner: justforuse
- Created: 2021-08-20T17:15:10.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-11-30T13:08:03.000Z (about 2 years ago)
- Last Synced: 2025-03-27T09:05:20.927Z (11 months ago)
- Topics: mathjax, vue, vue3
- Language: Vue
- Homepage: https://vue-mathjax-next.vercel.app/
- Size: 190 KB
- Stars: 36
- Watchers: 1
- Forks: 2
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-vue - vue-mathjax-next - A Vue 3 plugin for Mathjax (Components & Libraries / UI Components)
README
# vue-mathjax-next
[ ](https://www.npmjs.com/package/vue-mathjax-next)
[](https://vuejs.org/)
vue mathjax for vue3
[Demo](https://codesandbox.io/s/vue3-mathjax-demo-cz683m)
If you use vue 2, please check [vue-mathjax](https://github.com/justforuse/vue-mathjax)
## How to use
```
npm i vue-mathjax-next
```
In your main.js:
```js
import { createApp } from 'vue'
import VueMathjax from 'vue-mathjax-next';
import App from './App.vue'
const app = createApp(App)
app.use(VueMathjax)
app.mount('#app')
```
More options please check [vue-mathjax](https://github.com/justforuse/vue-mathjax), these have same options.