KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#claude-code
#codex
#cli
#developer-tools
#react
#windows
vue-adsense
★ 76
Open GitHub ↗
Google Adsense for Vue
Download README (.md)
Explore Similar Repositories
idtoken-verifier
:
Lightweight RSA JWT verification
showcase-ansible-chatops
:
Vagrant Demo showing ChatOps with Ansible
UniFiApi
:
API in .NET 9 to fetch data from an on premises Ubiquiti UniFi Controller
ether
:
Monad Transformers and Classes
BigDecimal
:
An arbitrary-precision decimal (base 10) floating-point number type. Downloaded over 30 million times on NuGet!
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
vue-adsense
?
Download (.md)
# Google Adsense for Vue  #### vue-adsense A simple Vue component for handling Google Ads ## Installation ```bash npm install --save-dev vue-adsense ``` and include the `adsbygoogle.js` file in your HTML ```html <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> ``` ## Usage Import the component ```js import VueAdsense from 'vue-adsense' ``` Register the component ```js Vue.component('adsense', VueAdsense) ``` And put into your DOM ```html <adsense ad-client="ca-pub-xxxxxxxxxxxxxxxx" ad-slot="XXXXXXXX" ad-style="display: block" ad-format="auto"> </adsense> ``` ## Values * ad-client - Your Google Adsense publisher account * ad-slot - The desired ad ID * ad-style - Any special styling you want * ad-format - Provided by Google, is usually 'auto' #### Notes Contributions welcome, enjoy the component