Revert "Replace Mix with Vite"

This commit is contained in:
KodeStar
2024-02-17 21:02:45 +00:00
committed by GitHub
parent 3a509fca47
commit 36d1d55934
22 changed files with 75 additions and 121 deletions

View File

@@ -0,0 +1,23 @@
<template>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="panel panel-default">
<div class="panel-heading">Example Component</div>
<div class="panel-body">
I'm an example component!
</div>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
mounted() {
console.log('Component mounted.')
}
}
</script>