diff --git a/src/ui/Domo/README.md b/src/ui/Domo/README.md index 52303102..eeb109ac 100644 --- a/src/ui/Domo/README.md +++ b/src/ui/Domo/README.md @@ -1,6 +1,6 @@ # Domo -> Domotic automation +> Domotic ## Build Setup diff --git a/src/ui/Domo/index.html b/src/ui/Domo/index.html index d0184c8e..6344377d 100644 --- a/src/ui/Domo/index.html +++ b/src/ui/Domo/index.html @@ -1,7 +1,17 @@ - +
- + + + + + + + + + +
- - Welcome to your Vue.js app. To get started, take a look at the - README - of this template. If you have any issues with the setup, please file an issue at this template's repository. -
-- For advanced configurations, checkout the docs for - Webpack and - vue-loader. -
-- You may also want to checkout - vue-router for routing and - vuex for state management. + + Go to Foo + Go to Bar
+ +This is foo!
' +}) + +var Bar = Vue.extend({ + template: 'This is bar!
' +}) + + +module.exports = function(router){ + router.map({ + '/foo': { + component: Foo + }, + '/bar': { + component: Bar + }, + '*': { + component: require('./components/index.vue') + }, + '/': { + component: require('./components/index.vue') + }, + '/list': { + component: require('./components/list.vue') + }, + '/asi': { + component: require('./components/asi.vue') + } + }) +} diff --git a/src/ui/Domo/static/favicon.ico b/src/ui/Domo/static/favicon.ico new file mode 100644 index 00000000..9006d2d0 Binary files /dev/null and b/src/ui/Domo/static/favicon.ico differ diff --git a/src/ui/Domo/static/favicon.png b/src/ui/Domo/static/favicon.png new file mode 100644 index 00000000..bde1e7d3 Binary files /dev/null and b/src/ui/Domo/static/favicon.png differ