[Vuejs]-Display JSON data in dialog with Vue.js

3👍

Create a data object where you have content as a key. On component created, you can assign it to the component’s content value.

<template>
    <div>
        {{ content }}
    </div>
</template>

<script>
export default {
    data () {
        return {
            content: []
        }
    },
    created () {
        axios.get('http://localhost:4000/ap/device')
            .then(function (response) {
                this.content = response.data.result   
            })
    }
}
</script>

Leave a comment