You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
288 B

// import image and font
import './test.css'
import font from './test.woff2'
import image from './test.png'
export default {
beforeCreate () {
this.$vnode.ssrContext._registeredComponents.add('__MODULE_ID__')
},
render (h) {
return h('div', `async ${font} ${image}`)
}
}