You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
589 B

<template>
<div class="tracker-rules-container">
<trackerrules/>
</div>
</template>
<script>
import TrackerRules from "./vue_TrackerRules.js";
export default {
name: "TrackerRulesApp",
components: {
trackerrules: TrackerRules
},
data: function () { return {
fieldId: this.$parent.fieldId,
fieldType: this.$parent.fieldType,
rules: this.$parent.rules,
targetFields: this.$parent.targetFields,
definitiion: this.$parent.definitiion,
}; }
};
</script>