2020-08-27 17:18:57 +08:00

40 lines
1.6 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="article">
<h1>何为Fes</h1>
<p>Fast Easy Strong</p>
<h2>为何需要Fes</h2>
<p>
不管啥产品出来总会有一个对应的管理后台系统管理后台系统呢大致就是权限查询增删改这些东西技术含量低但是大量的查询表单处理接口又要耗费不少开发调试时间
Fes应运而生管理开发到部署整个流程提供cli工具提供丰富的组件提供便捷的开发体验降低开发的门槛减少开发的工作量
</p>
<h2>Fes是什么</h2>
<p>
Fes是一整套解决方案包含cli工具fes-uifes.js三部分cli解决创建工程开发调试打包发布
fes-ui则是一套基于ant.design的PC端组件库fes.js是对Vue.js的扩展Vue的API都可以用使用建议先阅读学习<a target="_blank" href="http://v1-cn.vuejs.org/guide/">vue1.0</a>
</p>
<h2>愿景</h2>
<p>
开发着只需要写写表单调调接口就够了不需要关系发布不需要关系底层技术比如Vue.js解放咋们的生产力
</p>
</div>
</template>
<script type="text/ecmascript-6">
import markdown from './md/install.md'
export default {
components: {
markdown,
},
data: function () {
return {
markdown
}
},
ready: function () {
},
methods: {}
}
</script>