-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not working on vue js 3 #13
Comments
still not working lol |
in vue 2 it's wokring but the package in vue 3 i got this error This dependency was not found:
To install it, you can run: npm install --save @discord-message-components/vue/styles |
Hey @takefy-dev! This package is intended to work with only Vue 2, but To install the Vue 3 version, try the following: yarn add @discord-message-components/vue And then in your import { createApp } from 'vue'
import { install as DiscordMessageComponents } from '@discord-message-components/vue'
import App from './App.vue'
import '@discord-message-components/vue/dist/style.css'
const app = createApp(App)
// Only necessary if you want to provide plugin options
app.use(DiscordMessageComponents, { /* ... */})`
app.mount('#app') There is actually an error in the README's for that project; The |
Hey why is the package is not working on vue 3 ?
The text was updated successfully, but these errors were encountered: