Problem with dynamic prop on `$subscribe`

Problem with dynamic prop on $subscribe, when I change it many times

data() {
            return {
                param: '',
                posts:[]
         };
},
meteor: {
            $subscribe: {
                postsPub(){
                    return [this.param];
               }
            },
            posts(){
                return Posts.find().fetch();
            },
        },
methods:{
   handleParamChange(){
       // change param.......
   }
}