Michał Kruk
Michał Kruk

Reputation: 175

Vue printing page without footer and header

I want to know if it is possible to print content from website (component or multiple components) by Vue. I found some libraries that can do it, but I don't want to use any external libs.

Upvotes: 0

Views: 1350

Answers (1)

AlainPre
AlainPre

Reputation: 471

I'm not quite sure what you want to do, but it's possible with CSS to define specific layouts for printing:

@media print {
   header {display:none;}
   footer {display:none;}
}

Upvotes: 2

Related Questions