nuxt.renderAndGetWindow(url, options)
- Type:
Function - Argument:
StringString: URL to render- Optional,
Object: options
- virtualConsole:
Boolean(default:true)
- Returns:
Promise- Returns:
window
- Returns:
Get the window from a given url of a Nuxt.js application.
This method is made for test purposes.
To use this function, you have to install jsdom:
npm install --save-dev jsdom
Example:
const { Nuxt, Builder } = require('nuxt')
const config = require('./nuxt.config.js')
config.dev = false
const nuxt = new Nuxt(config)
nuxt.renderAndGetWindow('http://localhost:3000').then(window => {
// Display the head `<title>`
console.log(window.document.title)
})
Contributors
Vinícius Hoyer
Sébastien Chopin
Debbie O'Brien
Benjamin Canac
fgiraud
Sergey Bedritsky
Alba Silvente Fuentes
Alexander Lichter
Krutie Patel
Daniel Roe
pooya parsa
Pim
Ahad Birang
Caught a mistake or want to contribute to the documentation? Edit this page on GitHub!
