1<template>
2 <div>
3 <client-only>
4 <apexchart />
5 </client-only>
6 </div>
7</template>
8export default {
9 componennts: {
10 apexchart: () => (process.client ?
11 import('vue-apexcharts')
12 : Promise.resolve({ render: (h) => h('div') })),
13 }
14}