
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
@telekom/scale-components-vue-neutral
Advanced tools
Vue specific wrapper for @telekom/scale-components
Vue works well with custom elements, but has some minor limitations.
To work around this problems we provide custom element wrappers for better developer experience.
Please note that you will need to install both, the telekom/scale-components-neutral as well as the @telekom/scale-components-vue-neutral packages.
Once you have installed both packages and defined the custom elements, Scale components behave mostly the way you would expect a Vue component to behave!
import Vue from "vue";
import App from "./App.vue";
import { applyPolyfills, defineCustomElements } from "@telekom/scale-components-neutral/loader";
import "@telekom/scale-components-neutral/dist/scale-components/scale-components.css";
Vue.config.productionTip = false;
Vue.config.ignoredElements = [/scale-\w*/];
applyPolyfills().then(() => {
defineCustomElements(window);
});
new Vue({
render: h => h(App)
}).$mount("#app");
<template>
<div>
<scale-button>Click!</scale-button>
</div>
</template>
<script>
import Vue from 'vue'
import { ScaleButton } from "@telekom/scale-components-vue-neutral";
export default Vue.extend({
name: "app",
components: { ScaleButton },
});
</script>
In order to prevent collisions with standard events and compatibility with other libraries and frameworks,
some components of Scale are using custom event names. You can find documentation for the custom events on the respective component pages in the docs section.
Events in Vue are prefixed with: scale-{event-name}
Find Telekom Scale on GitHub.
FAQs
Vue specific wrapper for @telekom/scale-components
We found that @telekom/scale-components-vue-neutral demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.