
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
embedplay-tiktok-vue
Advanced tools
This package provides a flexible and easy way to integrate TikTok videos into your Vue application.
Read the Documentation - TikTok Developers
This package provides a flexible and easy way to integrate TikTok videos into your Vue application with customizable display options.
This Vue component template is designed to embed a TikTok video player using the EmbedplayTikTokVue component.
Framework | Supported versions |
---|---|
3 & above |
Major Changes:
v1.0.0
This Vue component renders a customizable TikTok player within an iframe, allowing users to embed TikTok posts directly into their applications.
The component supports a flexible border radius, allowing you to easily adjust the corner curvature of the iframe to fit your design needs.
Patch Changes:
v1.0.2
v1.0.1
To install the Embedplay TikTok Vue, you can use the following npm command:
npm install embedplay-tiktok-vue
<script setup>
import ExampleComponent from 'example-component';
</script>
Example 1
<script setup>
import EmbedplayTikTokVue from 'embedplay-tiktok-vue';
</script>
<template>
<div>
<EmbedplayTikTokVue
postId="6718335390845095173"
:autoplay="false"
:controls="true"
:progressBar="true"
:playButton="true"
:volumeControl="true"
:fullscreenButton="true"
:timestamp="true"
:loop="false"
:musicInfo="true"
:description="false"
:rel="true"
:nativeContextMenu="false"
:width="640"
:height="360"
/>
</div>
</template>
<script>
import ExampleComponent from 'example-component';
export default {
components: {
ExampleComponent
}
};
</script>
Example 2
<script>
import EmbedplayTikTokVue from 'embedplay-tiktok-vue';
export default {
components: {
EmbedplayTikTokVue
}
};
</script>
<template>
<div>
<EmbedplayTikTokVue
postId="6718335390845095173"
:autoplay="false"
:controls="true"
:progressBar="true"
:playButton="true"
:volumeControl="true"
:fullscreenButton="true"
:timestamp="true"
:loop="false"
:musicInfo="true"
:description="false"
:rel="true"
:nativeContextMenu="false"
:width="640"
:height="360"
/>
</div>
</template>
import { createApp } from 'vue';
import App from './App.vue';
import EmbedplayTikTokVue from 'embedplay-tiktok-vue'; // Import global
createApp(App)
.component('EmbedplayTikTokVue', EmbedplayTikTokVue)
.mount('#app');
If you choose global, you can use the code below:
<template>
<EmbedplayTikTokVue
postId="6718335390845095173"
:autoplay="false"
:controls="true"
:progressBar="true"
:playButton="true"
:volumeControl="true"
:fullscreenButton="true"
:timestamp="true"
:loop="false"
:musicInfo="true"
:description="false"
:rel="true"
:nativeContextMenu="false"
:width="640"
:height="360"
/>
</template>
You can set any number for the border radius parameter:
:borderRadius="10" // You can set any number value.
Example:
<EmbedplayTikTokVue
postId="6718335390845095173"
:autoplay="false"
:controls="true"
:progressBar="true"
:playButton="true"
:volumeControl="true"
:fullscreenButton="true"
:timestamp="true"
:loop="false"
:musicInfo="true"
:description="false"
:rel="true"
:nativeContextMenu="false"
:width="640"
:height="360"
:borderRadius="10"
/>
If you don't want to apply a border radius, simply remove the parameter.
MIT
Demjhon Silver
FAQs
This package provides a flexible and easy way to integrate TikTok videos into your Vue application.
We found that embedplay-tiktok-vue demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.