1234567891011121314151617181920212223242526272829303132 |
- //Component Object
- Component({
- properties: {
- commentsList:{
- type:Array,
- value:[],
- observer: function(){}
- },
- },
- data: {
-
- },
- methods: {
-
- },
- created: function(){
-
- },
- attached: function(){
- },
- ready: function(){
- console.log(this.properties)
- },
- moved: function(){
- },
- detached: function(){
- },
- });
|