Skip to content

Instantly share code, notes, and snippets.

@JonathanVeg
Last active December 30, 2016 14:18
Show Gist options
  • Save JonathanVeg/c0f383617d8de186da1b903955794a0f to your computer and use it in GitHub Desktop.
Save JonathanVeg/c0f383617d8de186da1b903955794a0f to your computer and use it in GitHub Desktop.
import Ember from 'ember';
const {
get,
set
} = Ember;
export default Ember.Service.extend({
clearForm() {
console.log("clear");
},
sendForm() {
// envia aqui
// agora limpa
clearForm();
// ele diz que essa função clear form n existe. Mas ela existe (ali em cima). Como csg fazer essa chamada?
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment