-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanual.js
More file actions
20 lines (19 loc) · 874 Bytes
/
Copy pathmanual.js
File metadata and controls
20 lines (19 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import Route from '@ember/routing/route';
export default Route.extend({
model() {
return {
adjectiveA: { val: '', partOfSpeech: 'adjective'},
pluralNounA: { val: '', partOfSpeech: 'noun', plural: true},
adjectiveB: { val: '', partOfSpeech: 'adjective'},
gerundA: { val: '', partOfSpeech: 'gerund'},
bodyPart: { val: '', partOfSpeech: 'bodyPart'},
adjectiveC: { val: '', partOfSpeech: 'adjective'},
verbA: { val: '', partOfSpeech: 'verb'},
pastVerbA: { val: '', partOfSpeech: 'verb', tense: "past"},
nounA: { val: '', partOfSpeech: 'noun'},
gerundB: { val: '', partOfSpeech: 'gerund'},
pluralAnimal: { val: '', partOfSpeech: 'animal', plural: true},
dateTime: { val: '', partOfSpeech: 'dateTime'},
}
}
});