Vue
山海之屿
这个作者很懒,什么都没留下…
展开
-
Vue 跳转带参数
传参 id <router-link class="glyphicon glyphicon-edit" :to="{path: '/user_edit', query: {id: item.id}}"> </router-link> 获取 <script> created() { this._id = this.$route.query.id; } </script>原创 2020-07-05 21:59:35 · 847 阅读 · 0 评论 -
Vue 自定义属性
自定义属性 data-id <tr v-for="(item, index) in userList" :key="index"> <td>{{item.id}}</td> <td>{{item.username}}</td> <td>{{item.tel}}</td> <td>{{item.role}}</td> <td>{{item.status === 0 ? '原创 2020-07-05 22:02:15 · 620 阅读 · 0 评论 -
Vue radio显示性别
<div class="form-group"> <label>性别:</label> <label class="radio-inline sex"> <input type="radio" name="sex" id="man" value="0" v-model="sex"> 男 </label> <label class="radio-inline"> <原创 2020-05-26 09:22:24 · 2242 阅读 · 0 评论 -
Vue 保存登录状态和拦截器的使用
登录状态 sessionStorage方法 //返回当前 sessionStorage 对象的第index序号的key名称。若没有返回null sessionStorage.key(int index) //返回键名(key)对应的值(value)。若没有返回null sessionStorage.getItem(string key) //该方法接受一个键名(key)和值(value)作为参数,将键值对添加到存储中;如果键名存在,则更新其对应的值 sessionStorage.setItem(stri原创 2020-05-25 23:58:45 · 431 阅读 · 1 评论 -
Vue 实时获取页面宽度 控制元素的显示和隐藏
</template> <div> <ECharts v-if="isShow"/> </div> </template> <script> ... export default { name: "index", components:{ ... ECharts }, data() { return { ... isS原创 2020-05-19 14:08:48 · 1712 阅读 · 0 评论 -
Vue项目中使用ECharts的中国地图
准备 创建vue项目 安装依赖 npm install echarts --save man.js import echarts from 'echarts'; Vue.prototype.$echarts = echarts; ECharts的图表需要在css指定width和height 方法一:直接引用 index.vue <template> <div id="chart"> <template> // 引入china.js <原创 2020-05-18 20:19:48 · 2061 阅读 · 1 评论