-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from fuzzypawzz/Remove-IOC-container
Remove IOC container and Lodash
- Loading branch information
Showing
14 changed files
with
18 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 0 additions & 14 deletions
14
src/JMDK.Core/infrastructure/dependency-injection/index.ts
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
import { createApp } from 'vue' | ||
import App from '@/JMDK.UI/components/app/App.vue' | ||
import router from '@/JMDK.Core/router' | ||
import bindFrameworkDependencies from '@/JMDK.Core/ioc/bind-framework-dependencies' | ||
|
||
const app = createApp(App) | ||
|
||
app.use(router) | ||
app.use(bindFrameworkDependencies, { | ||
router, | ||
}) | ||
|
||
app.mount('#app') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 0 additions & 25 deletions
25
src/JMDK.UI/views/home-view/presenter/home-view-presenter.test.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
import type { Content } from '@/JMDK.UI/types/content' | ||
|
||
export type ViewModel = { | ||
heading: string | ||
handle: string | ||
description: string | ||
buttonOptions: Content.Button[] | ||
hashTags: string[] | ||
content: { | ||
heading: string | ||
handle: string | ||
description: string | ||
buttonOptions: Content.Button[] | ||
hashTags: string[] | ||
} | ||
} |