@designcrowd/fe-shared-lib 1.2.0-ml-jj-8 → 1.2.0-ml-jj-9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
</Modal>
|
|
36
36
|
</template>
|
|
37
37
|
<script>
|
|
38
|
+
import { computed } from 'vue';
|
|
38
39
|
import Modal from '../../../atoms/components/Modal/Modal.vue';
|
|
39
40
|
|
|
40
41
|
import SellDomainNameSearch from '../SellDomainNameSearch/SellDomainNameSearch.vue';
|
|
41
42
|
import SellDomainNameSearchResult from '../SellDomainNameSearchResult/SellDomainNameListSearchResult.vue';
|
|
42
43
|
import useSellDomainContent from '../SellDomainNameSearch/useSellDomainContent';
|
|
43
|
-
import { computed } from 'vue';
|
|
44
44
|
|
|
45
45
|
export default {
|
|
46
46
|
components: {
|
|
@@ -102,6 +102,7 @@ export default {
|
|
|
102
102
|
const contentProvider = useSellDomainContent();
|
|
103
103
|
const content = contentProvider.getContent();
|
|
104
104
|
return {
|
|
105
|
+
translationContent: content,
|
|
105
106
|
domainSearchHeaderTitle: computed(() => content.value.domainSearchHeaderTitle),
|
|
106
107
|
domainSearchHeaderSubtitle: computed(() => content.value.domainSearchHeaderSubtitle),
|
|
107
108
|
};
|