dev-audioprocessing/pages/index1/index.vue

39 lines
868 B
Vue
Raw Normal View History

2022-12-24 16:36:24 +00:00
<template>
<div>
<div class="container">
<div class="row pt-3">
<div class="col-12 text-center">
2022-12-31 20:05:12 +00:00
<!-- <img src="~/assets/image/Cloudsoftware.png" class="img-fluid">-->
2022-12-30 18:54:59 +00:00
<client-only>
<!-- <av-waveform-->
<!-- src="/maskin2.wav"-->
<!-- :played-line-width="3"-->
<!-- :noplayed-line-width="3"-->
<!-- ></av-waveform>-->
</client-only>
2022-12-24 16:36:24 +00:00
<h4 class="fw-bold ">Focus</h4>
<div class="pt-3">
2022-12-31 20:05:12 +00:00
<img src="~/assets/image/Frame19439.png" class="img-fluid" />
2022-12-24 16:36:24 +00:00
</div>
<div class="d-flex justify-content-center pt-3">
</div>
</div>
</div>
</div>
</div>
</template>
<script>
2022-12-27 20:47:47 +00:00
2022-12-24 16:36:24 +00:00
export default {
name:'HomePage',
2022-12-28 00:20:42 +00:00
2022-12-24 16:36:24 +00:00
created() {
2022-12-27 20:47:47 +00:00
return{
player : '',
canvas : '',
mySource : "./symphony.mp3",
}
2022-12-24 16:36:24 +00:00
}
}
</script>