updated FooterComponent.vue to use script setup
This commit is contained in:
@@ -33,14 +33,8 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script setup lang="ts">
|
||||||
export default {
|
const version = import.meta.env.VITE_VERSION;
|
||||||
name: "FooterComponent",
|
|
||||||
setup() {
|
|
||||||
const version = import.meta.env.VITE_VERSION;
|
|
||||||
return { version };
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
Reference in New Issue
Block a user