marked解析markdown语法
安装markednpm install marked使用 mounted() { marked.setOptions({ renderer: new marked.Renderer(), highlight: fun...
使用mavonEditor写文章,并且预览。
<mavon-editor :subfield="false" :boxShadow="false" defaultOpen="preview" :toolbar...
nuxt跨域
首先安装两个插件npm install @nuxtjs/axios @nuxtjs/proxy --save在 nuxt.config.js 配置文件中添加对应的模块,并设置代理proxy: { ...
vue 按需引入element-ui时遇到的坑
为了减小项目体积,需要按需引入element-ui,但是按照官方步骤走的时候遇到了很多坑官方步骤按需引入借助 babel-plugin-component,我们可...
vue中typescript使用vue-property-decorator
安装npm install --save vue-property-decorator@Prop 父子组件之间值的传递平常用法export default{ props:{ propA:String, ...
vuex 在typescript中的详细使用: vuex-class
我们要说的vuex在ts文件中的使用主要是利用vuex-class!安装vuex-class$ npm install --save vuex-class直接上代码,主要用法在代码中已经...
vue-cli3.0打包后去除所有的console.log
vue-cli3.0在打包过程中就使用了terser-webpack-plugin插件进行优化,具体配置可以node_modules/@vue/cli-service/lib/config/prod.js中看...
vue使用vue-json-excel导出excel
安装依赖包npm install vue-json-excel在main.js种引入import JsonExcel from 'vue-json-excel' Vue.component('downloadExcel...
elementui tab标签管理路由页面
思路将打开的所有路由放到一个数组中(tagsList:[]),tabs显示遍历tagsListconst state = { //默认显示首页 tagsList: [{ path: &...
vue-element-admin模板登陆
vue-element-admin登陆登录:当用户填写完账号和密码后向服务端验证是否正确,验证通过之后,服务端会返回一个token,拿到token之后(我会...
nuxt中的axios设置默认的请求路径
在nuxt.config.js里面写入:modules: [ // Doc: https://axios.nuxtjs.org/usage '@nuxtjs/axios' ],axios: { retry: { retrie...
vue实现简单的后台页面路由
<!DOCTYPE html><!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--><!--[if IE 7]> ...
vue-router实现路由动画
使用trsansition包裹router-view<transition :name="transitionName"> <router-view class="Router"></router-view> </transition>在data中...