Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/justforuse/vue-mathjax-next
Vue3 + Mathjax plugin
https://github.com/justforuse/vue-mathjax-next
mathjax vue vue3
Last synced: about 5 hours 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 (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-11-30T13:08:03.000Z (12 months ago)
- Last Synced: 2024-11-11T12:34:16.399Z (4 days ago)
- Topics: mathjax, vue, vue3
- Language: Vue
- Homepage: https://vue-mathjax-next.vercel.app/
- Size: 190 KB
- Stars: 31
- Watchers: 2
- Forks: 2
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vue-mathjax-next
[![npm](https://img.shields.io/npm/v/vue-mathjax-next.svg) ![npm](https://img.shields.io/npm/dm/vue-mathjax-next.svg)](https://www.npmjs.com/package/vue-mathjax-next)
[![vue3](https://img.shields.io/badge/vue-3.x-brightgreen.svg)](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.