“VUE 3 Globale Variable” Code-Antworten

So erstellen Sie eine globale Variable im VUE

// in main =.js
Vue.prototype.$appName = 'My App'

////in components 
 console.log(this.$appName)
perada

VUE 3 Globale Variable

// on vue 3

const app = Vue.createApp({})
app.config.globalProperties.$myGlobalVariable = globalVariable

// on vue 2
Vue.prototype.$myGlobalVariable = globalVariable
Curious Chimpanzee

Globale variable VueJs

import Axios from 'axios'

// set global axios like this
Vue.prototype.$axios = Axios;

// call axios like this
this.$axios.get('https://jsonplaceholder.typicode.com/todos/1')
Restu Wahyu Saputra

Ähnliche Antworten wie “VUE 3 Globale Variable”

Fragen ähnlich wie “VUE 3 Globale Variable”

Weitere verwandte Antworten zu “VUE 3 Globale Variable” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen