logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

video标签autoplay属性不生效

使用autoplay属性,要配合muted静音属性才生效

#前端#html
uniapp radio组件取消选中

html代码<radio-group><label v-for="(item, index) in List" :key="index"><radio :class="active == index ? 'checked' : ''" :checked="active== index" :value="index" @click="radioChange(index)

#html5#javascript#前端
uniapp switch开关选择器

Switch开关选择器需要接口时,给开关赋默认值的方法1. 先获取接口里面的数据//执行加载数据方法onLoad() {this.updata();},// 获取数据updata(){this.$http.get({// 接口地址url:'&do=store_set&act=set_read&storeid=31'}).then(res=>{console.log('

#vue.js#javascript
vue axios请求设置content-type无效

vue-admin-template开发中在request请求中设置了Content-type,但是在在浏览器中查看请求主体并没有Content-typeservice.interceptors.request.use(config => {if (store.getters.token) {config.headers['X-Token'] = getToken();}config.hea

文章图片
#vue.js
到底了