We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Someone can explain which app file or folder ?
The text was updated successfully, but these errors were encountered:
Depends on you setup, but with vue 2 you likely have a main.js looking like this :
main.js
import Vue from 'vue' import VueMeta from 'vue-meta' import { createRouter } from './router' import { createStore } from './store' import App from './App.vue' Vue.use(VueMeta) export function createApp() { const router = createRouter() const store = createStore() const app = new Vue({ name: 'root', render: (el) => el(App), router, store, }) return { app, router, store, } }
You can then access app like this :
app
const { app, router, store } = createApp() const meta = app.$meta()
Sorry, something went wrong.
No branches or pull requests
Someone can explain which app file or folder ?
The text was updated successfully, but these errors were encountered: