mirror of https://github.com/sveltejs/svelte
18 lines
322 B
18 lines
322 B
{{compute}}
|
|
<script>
|
|
import { addCss, addedCss, applyComputations, renderMainFragment } from './module.js';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
value: addCss + addedCss + applyComputations + renderMainFragment
|
|
};
|
|
},
|
|
computed: {
|
|
compute: value => value.toUpperCase()
|
|
}
|
|
};
|
|
</script>
|
|
<style>
|
|
</style>
|