meteor-vue icon indicating copy to clipboard operation
meteor-vue copied to clipboard

print function source code

Open hanai opened this issue 9 years ago • 1 comments

I followed this tutorial https://www.meteor.com/tutorials/blaze/temporary-ui-state.

I tried

sync: {
    incompleteCount: function () {
      return Tasks.find({checked: {$ne: true}}).count();
    }
}
 <header>
      <h1>Todo List ({{incompleteCount}})</h1>
      <label class="hide-completed">

when incompleteCount equals 0, the page print out source code

2015-11-17 5 09 46

hanai avatar Nov 17 '15 09:11 hanai

oh, can you try [[ instead of {{? we change that to avoid the conflict of blaze

zhouzhuojie avatar Nov 17 '15 16:11 zhouzhuojie