# Demo
Some demos.
# Local mode
<social-share />
# Plain mode
<social-share
:networks="['facebook', 'qq', 'twitter', 'line', 'reddit']"
is-plain
/>
# Custom hashtags
<social-share
:networks="['twitter', 'facebook']"
:tags="['SocialShare', 'VuePress']"
/>
# Custom order
<social-share :networks="['twitter', 'facebook']" />
<social-share :networks="['facebook', 'twitter']" />
# Built-in networks
<social-share
:networks="[
'facebook',
'qq',
'twitter',
'line',
'reddit',
'skype',
'douban',
'whatsapp',
'telegram',
'weibo',
]"
/>
# User-customed networks
<social-share :networks="['pinterest', 'linkedin']" />
# No global UI
Add noGlobalSocialShare: true
in frontmatter to disable the global ui component.
Currently, the page you are looking at has no global social share component.
---
noGlobalSocialShare: true
---