This commit is contained in:
2023-11-19 20:58:40 +01:00
parent b3fdd071a2
commit d70be43c5d
48 changed files with 2864 additions and 25 deletions

View File

@@ -0,0 +1,28 @@
<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>