I am trying to use this component in my project. Below code is working.
<template>
<vuetable
ref="vuetable"
api-url="https://vuetable.ratiw.net/api/users"
:fields="['name', 'email']"></vuetable>
</template>
But it is not working when I change api-url
like below
<template>
<vuetable
ref="vuetable"
api-url="http://127.0.0.1:8000/api/addresses"
:fields="['name', 'email']"></vuetable>
</template>
I am getting error like below.
I am getting below error while trying trying to browse URL through browser.