## BaseService 基础框架服务

用来设置vue项目的基础配置信息及启动项目

### BaseService.setRouterMode("hash) 设置项目的路由模式
默认模式history：

### VUE 组件介绍

[使用介绍](https://element.eleme.cn/#/zh-CN/component/dialog "参考elementUI")
:::demo 
```html
<template>
    <div>
        <el-button type="text" @click="dialogVisible = true">点击打开 Dialog</el-button>
        <vb-dialog
          title="提示"
          :visible.sync="dialogVisible"
          width="30%"
          :before-close="handleClose">
          <span>这是一段信息</span>
          <span slot="footer" class="dialog-footer">
            <el-button @click="dialogVisible = false">取 消</el-button>
            <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
          </span>
        </vb-dialog>
    </div>
</template>

<script>
    export default {
        data() {
            return {
                dialogVisible: false
            }
        },
        methods : {
            handleClose(done) {
                let bool = confirm('确认关闭？')
                    bool&&done();
            }
        }
    }
</script>
```
:::
