[]
新しいVueアプリケーションを作成する簡単な方法はnpmパッケージのVue CLIを使用することです。
Vue CLIを使用するためには事前にNodeJSがコンピュータにインストールされている必要があります。
Vue CLIをインストールするにはコマンドプロンプトで次のコマンドを入力してインストールします。
npm install -g @vue/cli
上記コマンドはグローバルにインストールする -g オプションを使用しているため、一度インストールした後の再実行は不要です。
vue create arjs-vue-viewer-app
cd arjs-vue-viewer-app
npm install @grapecity/activereports-vue @grapecity/activereports-localization
Vue 2.X~を使用する場合、@vue/composition-apiパッケージも合わせてインストールする必要があります。
npm install @vue/composition-api
<template>
<div id="viewer-host">
<JSViewer :report="{ Uri: 'reports/quick-start-sample.rdlx-json' }" language="ja"></JSViewer>
</div>
</template>
<script>
import { Viewer } from "@grapecity/activereports-vue";
import "@grapecity/activereports/styles/ar-js-ui.css";
import "@grapecity/activereports/styles/ar-js-viewer.css";
import "@grapecity/activereports/pdfexport";
import "@grapecity/activereports/htmlexport";
import "@grapecity/activereports/xlsxexport";
import "@grapecity/activereports-localization";
export default {
name: "App",
components: {
JSViewer: Viewer
}
};
</script>
<style>
#viewer-host {
width: 100%;
height: 100vh;
}
</style>
public\reportsディレクトリを作成し、サンプルレポートを作成するで作成したquick-start-sample.rdlx-jsonファイルを配置します。
次のコマンドを入力してVuerアプリケーションを実行します。
npm run serve