vue-affix icon indicating copy to clipboard operation
vue-affix copied to clipboard

How can i use with ssr

Open jane0219 opened this issue 6 years ago • 1 comments

jane0219 avatar Apr 18 '19 06:04 jane0219

let Affix = {
  template: '<div><slot/></div>'
};
if (process.client) {
  Affix = require('vue-affix').Affix;
}
export default {
  components: {
    Affix,
  },
};

archieDeveloper avatar Jul 03 '20 05:07 archieDeveloper