logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

使用vue.js路由后失效

新学了vue.js中的路由 在之前写的vue的demo上加上了简单的路由例子(来自vue-router 2),但是加上点击后只有地址栏变化,内容并不变.且之前用jquery写的一些效果也失效了.最后找到原因是因为同一个id被启动了两次(第一次是之前使用vue组件时启动的,另外一个是路由时启动的)附上部分代码<!DOCTYPE html><html><head><meta charset="

vue组件中点击按钮后修改输入框的状态

最近写一个这样的页面要求点击修改按钮之后部分输入框由禁用状态变为可用状态.我使用了vue中的事件处理器,但是不知道怎么获取disabled这个属性的值,所以以失败告终.后来又使用了vue中的v-bind,使其与class或者style绑定,但是也没有作用<el-input id = "usernames" v-model="form.username" v-bind:style = {"di

LeetCode 02 Add Two Numbers

You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return i

Python大小写转换

来自:http://blog.csdn.net/xxzhangx/article/details/52695089大写把所有字符中的小写字母转换成大写字母>>> str = "hELLO world!">>> print (str.upper())HELLO WORLD!123小写把所有字符中的大写字母转换成小写字母>>> str = "

#python
到底了