dev-audioprocessing/pages/about.vue

16 lines
243 B
Vue
Raw Normal View History

2022-12-11 23:33:34 +00:00
<template>
<div>
2022-12-16 23:17:37 +00:00
<div class="container">
<h1 class="display-4">{{ text }}</h1>
2022-12-12 03:10:34 +00:00
</div>
2022-12-11 23:33:34 +00:00
</div>
</template>
<script>
export default {
2022-12-16 23:17:37 +00:00
data(){
return{
text : "Helo World",
}
}
2022-12-11 23:33:34 +00:00
}
</script>