“Vuejs Redefinir componente” Respostas de código

Vuejs Redefinir componente

Object.assign(this.$data, this.$options.data())
Filthy Fish

re init dados vue js

export default {
    data () {
        return {
            h2: 0,
            // other attributes...
        };
    },
    methods: {
        resetFields () {
            Object.assign(this.$data, this.$options.data.call(this));
        }
    }
}
Silly Shrew

Respostas semelhantes a “Vuejs Redefinir componente”

Perguntas semelhantes a “Vuejs Redefinir componente”

Mais respostas relacionadas para “Vuejs Redefinir componente” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código