render渲染table列表

renderone.js

import Vue from 'vue';
let ProfileHandle = Vue.extend({
props: {
inputInfo: '',
},
data() {
return {
inputValue:'',
}
},
template:

{{inputInfo}}
{{inputValue}}
,
mounted() {
},
watch:{
},
methods:{
changeDate(value){
}
}
});
export default ProfileHandle;

tablelist.vue

...


...

你可能感兴趣的:(render渲染table列表)