+
+
+ {{ item.title }}
+
+
+
+
+ Continue
+
+
+ Cancel
+
+
+
@@ -65,7 +49,25 @@ export default {
data() {
return {
- e6: 1
+ e6: 1,
+ items: [
+ { title: 'Import a dataset' },
+ { title: 'Create labels for this project' },
+ { title: 'Add members for collaborative work' },
+ { title: 'Define a guideline for the work' },
+ { title: 'Annotate the dataset' },
+ { title: 'View statistics' },
+ { title: 'Export the dataset' }
+ ]
+ }
+ },
+
+ methods: {
+ next() {
+ this.e6 = Math.max(1, (this.e6 + 1) % (this.items.length + 1))
+ },
+ prev() {
+ this.e6 = Math.max(1, this.e6 - 1)
}
},