# 快速上手

本节将介绍如何在项目中使用，使用前请先确认是否npm安装，没有安装请先参考[安装章节](./installation.md)。

### 使用之前

高效的开发，离不开基础工程的搭建。在开始使用 Vue-iClient3D-WebGL 之前，有必要先了解以下基础知识，我们也假设您已经写过 Vue，并掌握了下面的内容。

  - [Vue 组件](https://cn.vuejs.org/v2/guide/components.html)
  - [单文件组件](https://cn.vuejs.org/v2/guide/single-file-components.html)

以下概念贯穿 Vue-iClient3D-WebGL 前后，建议开发者花点时间来了解。

  - prop 传递数据
  - slot 内容分发
  - events $emit @click 事件

### 引入 Vue-iClient3D-WebGL

在 main.js 中写入以下内容：

```js
import Vue from 'vue';
import App from './App.vue';

//第三方库
import ViewUI from 'view-design';
import 'view-design/dist/styles/iview.css';
Vue.use(ViewUI);

import axios from 'axios'
window.axios = axios //挂载到window上

import echarts from 'echarts'
window.echarts = echarts //挂载到window上

//vue-iclient3d-webgl组件库
import VueiClient from '@supermap/vue-iclient3d-webgl';
Vue.use(VueiClient);

new Vue({
  el: '#app',
  render: h => h(App)
});
```

在 index.html 中写入以下内容：

```html
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="utf-8">
  <title>vue-iclient3d-webgl</title>

  <!--    组件图标css-->
  <link href="./node_modules/@supermap/vue-iclient3d-webgl/static/css/geoFont/iconfont.css" rel="stylesheet">

  <!--    Cesium-->
  <link href="./node_modules/@supermap/vue-iclient3d-webgl/static/Cesium/Widgets/widgets.css" rel="stylesheet">
  <script src="./node_modules/@supermap/vue-iclient3d-webgl/static/Cesium/Cesium.js"></script>

  <!--    supermap-->
  <script src="./node_modules/@supermap/vue-iclient3d-webgl/static/js/config.js"></script>
  <script src="./node_modules/@supermap/vue-iclient3d-webgl/static/js/tooltip.js"></script>
  <script src="./node_modules/@supermap/vue-iclient3d-webgl/static/js/underscore-min.1.4.4.js"></script>
</head>

<body>
  <div id="app"></div>
</body>

</html>

```

以上代码便完成了 Vue-iClient3D-WebGL 的引入。

### 常见使用问题说明

1. 本产品使用了一些第三方库，使用前请先安装第三方依赖，如上示例安装引入的有：view-design,axios,echarts，可根据项目需求和参考组件第三方依赖按需引入，使用参考如main.js。
2. 若项目工程是采用webpack-simple搭建，那么在复制本文的index.html时，请注意，需要保留自动生成的index.html里如下标签：
```html
<script src="./dist/build.js"></script>
```
