I'm fairly new to web development and I was wondering if there was a way to route a static web page with its own stylesheets and javascripts, using vue-router
.
Let's say I have a directory called staticWebPage that contains:
- an
index.html
file - a javascripts directory containing
.js
files - and a stylesheets directory containing
.css
files
Now, I'd like to map /mystaticwebpage
to this index.html
file so it displays that particular static web page.
I'd like to do something like this:
import VueRouter from 'vue-router'
import AComponent from './components/AComponent.vue'
import MyHtmlFile from './references/index.html'
router.map({
'/acomponent': {
component: AComponent
},
'mystaticwebpage': {
component: MyHtmlFile
}
})
Of course, this doesn't work as I can only reference Vue components in router.map
.
Is there a way to route to that ./staticWebPage/index.html
file using all the .js
and .css
file contained in the /staticWebPage
directory?
Aucun commentaire:
Enregistrer un commentaire