> mounted: function () {
> var $this = this;
> $(document).off('keyup').keyup(function (e) {
> if (e.keyCode == 13) {
> $this.doInsertion();
> }
> })
> },
> mounted: function () {
> var $this = this;
> $(document).off('keyup').keyup(function (e) {
> if (e.keyCode == 13) {
> $this.doInsertion();
> }
> })
> },