forked from rebillar/site-accueil-insa
23 lines
537 B
TypeScript
23 lines
537 B
TypeScript
/*!
|
|
* Matomo - free/libre analytics platform
|
|
*
|
|
* @link https://matomo.org
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*/
|
|
|
|
import { createAngularJsAdapter, transformAngularJsIntAttr } from 'CoreHome';
|
|
import Edit from './Edit.vue';
|
|
|
|
export default createAngularJsAdapter({
|
|
component: Edit,
|
|
scope: {
|
|
dimensionId: {
|
|
angularJsBind: '=',
|
|
transform: transformAngularJsIntAttr,
|
|
},
|
|
dimensionScope: {
|
|
angularJsBind: '=',
|
|
},
|
|
},
|
|
directiveName: 'piwikCustomDimensionsEdit',
|
|
});
|