Skip to content
Snippets Groups Projects
Commit d7753938 authored by Ole Voldsæter's avatar Ole Voldsæter
Browse files

determinativ, pronomen + flyttet stiler tilbake til Header.vue

parent 194f4fc2
No related branches found
No related tags found
No related merge requests found
...@@ -25,6 +25,9 @@ import ADJ from './inflection/Adjective.vue' ...@@ -25,6 +25,9 @@ import ADJ from './inflection/Adjective.vue'
import ADJ_adv from './inflection/AdjectiveAdv.vue' import ADJ_adv from './inflection/AdjectiveAdv.vue'
import ADJ_masc_fem from './inflection/AdjectiveMF.vue' import ADJ_masc_fem from './inflection/AdjectiveMF.vue'
import ADJ_masc_fem_fem from './inflection/AdjectiveMF_F.vue' import ADJ_masc_fem_fem from './inflection/AdjectiveMF_F.vue'
import DET from './inflection/Determinative.vue'
import DET_adj from './inflection/DeterminativeAdj.vue'
import PRON from './inflection/Pronoun.vue'
export default { export default {
name: 'Header', name: 'Header',
...@@ -40,12 +43,15 @@ export default { ...@@ -40,12 +43,15 @@ export default {
ADJ, ADJ,
ADJ_adv, ADJ_adv,
ADJ_masc_fem, ADJ_masc_fem,
ADJ_masc_fem_fem ADJ_masc_fem_fem,
DET,
DET_adj,
PRON
} }
} }
</script> </script>
<style scoped> <style >
summary { summary {
width: 30em; width: 30em;
...@@ -69,6 +75,19 @@ details > summary { ...@@ -69,6 +75,19 @@ details > summary {
text-decoration-style: dashed; text-decoration-style: dashed;
} }
.inflection table {
border-collapse: collapse;
margin: 10px;
}
.inflection td, .inflection th {
border: solid;
border-width: 1px;
margin: 0px 0px 0px 0px;
padding: 3px;
}
details > summary::-webkit-details-marker { details > summary::-webkit-details-marker {
display: none; display: none;
} }
......
...@@ -33,17 +33,3 @@ export default { ...@@ -33,17 +33,3 @@ export default {
} }
} }
</script> </script>
<style scoped>
table {
border-collapse: collapse;
margin: 10px;
}
td, th {
border: solid;
border-width: 1px;
margin: 0px 0px 0px 0px;
padding: 3px;
}
</style>
...@@ -20,17 +20,3 @@ export default { ...@@ -20,17 +20,3 @@ export default {
} }
} }
</script> </script>
<style scoped>
table {
border-collapse: collapse;
margin: 10px;
}
td, th {
border: solid;
border-width: 1px;
margin: 0px 0px 0px 0px;
padding: 3px;
}
</style>
...@@ -35,17 +35,3 @@ export default { ...@@ -35,17 +35,3 @@ export default {
} }
} }
</script> </script>
<style scoped>
table {
border-collapse: collapse;
margin: 10px;
}
td, th {
border: solid;
border-width: 1px;
margin: 0px 0px 0px 0px;
padding: 3px;
}
</style>
...@@ -35,17 +35,3 @@ export default { ...@@ -35,17 +35,3 @@ export default {
} }
} }
</script> </script>
<style scoped>
table {
border-collapse: collapse;
margin: 10px;
}
td, th {
border: solid;
border-width: 1px;
margin: 0px 0px 0px 0px;
padding: 3px;
}
</style>
<template>
<table>
<tr>
<th rowspan="2">Determinativ</th><th colspan="3">Entall</th><th rowspan="2">Flertall</th>
</tr>
<tr>
<th>Hankjønn</th><th>Hunkjønn</th><th>Intetkjønn</th>
</tr>
<tr v-for="(std, index) in standardisations" :key="index">
<td></td>
<td>{{std.inflection[0].word_form}}</td>
<td>{{std.inflection[1].word_form}}</td>
<td>{{std.inflection[2].word_form}}</td>
<td>{{std.inflection[3].word_form}}</td>
</tr>
</table>
</template>
<script>
export default {
name: "DET",
props: {
standardisations: Array
}
}
</script>
<template>
<DET :standardisations="standardisations"></DET>
</template>
<script>
import DET from './Determinative.vue'
export default {
name: "DET_adj",
props: {
standardisations: Array
},
components: {
DET
}
}
</script>
<template>
<table>
<tr>
<th>Pronomen</th><th>Subjektsform</th><th>Objektsform</th>
</tr>
<tr v-for="(std, index) in standardisations" :key="index">
<td></td>
<td>{{std.inflection[0].word_form}}</td>
<td>{{std.inflection[1].word_form}}</td>
</tr>
</table>
</template>
<script>
export default {
name: "PRON",
props: {
standardisations: Array
}
}
</script>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment