
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@ec-nordbund/vuetify-icon-injector
Advanced tools
If installed it automaticly changes the output of vue-template-compiler
. The icons (so the strings mdi-***
) are automaticly replaced with the corresponding svg path. This only happens in the folling use-cases:
<v-icon>mdi-example</v-icon>
<v-icon v-text="'mdi-example'"></v-icon>
<v-icon v-html="'mdi-example'"></v-icon>
<v-component prop="mdi-example"></v-component>
<v-component :prop="'mdi-example'"></v-component>
<v-component v-bind:prop="'mdi-example'"></v-component>
This only works for v-component
and prop
if it is registerd in the src/vuetifyIconProps.ts
File. You can add your custom component and props to the list.
If a vuetify Prop or Component is missing just create a issue or a PR.
Since Version 2.3.0 you can use PascalCase and CamelCase Component names in your the .vue files and they will be automaticly detected.
It just uses String replace to handle this. So you can use something like:
<v-component :prop="1==2 ? 'mdi-example1' : 'mdi-example2'"></v-component>
So remeber not to use mdi-***
strings in your template for any other reason than for the icons.
yarn add @ec-nordbund/vuetify-icon-injector
or npm i @ec-nordbund/vuetify-icon-injector
const customIcons = {
iconName: 'icon svg path'
}
const customIconMap = {
'my-custom-icon': [
'icon-prop-1',
'icon-prop-2',
'icon-prop-3'
]
}
const vueLoaderOptions = {
compilerOptions: {
modules: [
require('@ec-nordbund/vuetify-icon-injector').getIconInjector(customIcons, customIconMap) // arguments are optional
]
}
}
// For Nuxt:
module.exports = {
build: {
loaders: {
vue: vueLoaderOptions
}
}
}
You could use my Module https://github.com/EC-Nordbund/vuetify-module it automaticly activates and setup this package.
FAQs
<!-- <a href="https://bundlephobia.com/result?
We found that @ec-nordbund/vuetify-icon-injector demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.