Files
ikea/resources/js/Components/GoogleCharts.vue
2023-11-19 20:58:40 +01:00

28 lines
414 B
Vue

<script setup>
import { GChart } from 'vue-google-charts';
const type = 'GeoChart';
const data = [
['Country', 'Popularity'],
['Germany', 200],
['United States', 300],
['Brazil', 400],
['Canada', 500],
['France', 600],
['RU', 700],
];
const options = {
width: 800,
height: 600,
};
</script>
<template>
<GChart :data="data"
:options="options"
type="GeoChart"
/>
</template>