vue-affix
vue-affix copied to clipboard
How can i use with ssr
let Affix = {
template: '<div><slot/></div>'
};
if (process.client) {
Affix = require('vue-affix').Affix;
}
export default {
components: {
Affix,
},
};