28 lines
414 B
Vue
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> |